Was trying to get a macro to nonstop click my breastplate while running or afk (was trying to get it to pump heal/mana song maybe as well but i have no idea how to do that)
____________
|bardbp.mac
|/mac bardbp
|/echo stop (to end it and have it re-equip your original BP)
|Thanks to Ieatacid for creating manarobe.mac (were this was taken from)
#turbo
#event stop "[MQ2] stop"
Sub Main
/declare slot int outer
/declare bag int outer
/echo bardbp.mac started....
/echo /echo stop (to stop it)
/if (!${Window[InventoryWindow].Open}) /keypress Inventory
/varset bag ${FindItem[Singing Steel Breastplate].InvSlot.Pack}
/itemnotify ${InvSlot[${bag}]} rightmouseup
/varset slot ${FindItem[=Singing Steel Breastplate].InvSlot}
/itemnotify chest leftmouseup
/itemnotify ${InvSlot[${slot}]} leftmouseup
/itemnotify chest leftmouseup
/if (${Me.Sitting}) /stand
:loop
/call CheckHP
/itemnotify chest rightmouseup
/doevents
/delay 1
/goto :loop
/return
Sub CheckHP
/if (${Me.PctHPs}>=98) {
/echo FULL HEALTH!!
/call EndIt
}
/return
Sub EndIt
:wait
/if (${Me.Casting.ID}) /goto :wait
/itemnotify chest leftmouseup
/itemnotify ${InvSlot[${slot}]} leftmouseup
/itemnotify chest leftmouseup
/echo Ending.
/cleanup
/endmac
Sub Event_stop
/call EndIt
/return
____________________-
Does that appear to be working for anyone? i got a few errors on my side while attempting it

