This mac is for people that equip the sining steel brestplate. It is the same as Zenjisu's bp.mac but it does not swap anything. If you are not equiping the bp then use Zenjisu bp.mac.
If this does not work for you, YOU are doing somthing wrong. I am a bard and it is working for me.
Code: Select all
|bpb.mac
|
|10-18-04
|
|syntax is /mac bpb
|
|
|This macro is for bards with SSB, which heals for 100 hps.
#turbo
#event stop "[MQ2] stop"
Sub Main
/declare slot int outer
/declare bag int outer
/echo bpb.mac started....
/if (${Me.Sitting}) /stand
:loop
/call CheckHP
/itemnotify chest rightmouseup
/doevents
/delay 1
/goto :loop
/return
Sub CheckHP
/if (${Me.PctHPs}>=99) {
/echo Back to Full Health!
/call EndIt
}
/return
Sub EndIt
:wait
/if (${Me.Casting.ID}) /goto :wait
/echo Ending.
/cleanup
/endmac
Sub Event_stop
/call EndIt
/return
