A clicky armor script would be useful for all i think.
Perhaps one that works like /macro arm 170
where 170 is the delay....
to push it even further, and have clicky twisting, you can maybe do..../macro arm 170 leg 120...etc
Moderator: MacroQuest Developers
Code: Select all
| DeapWater Helm Heal macro
| Author, eqjim, modified by curiousgeorge, cleaned up by DeathSpiral
sub Main
| No need to heal if we are full health
/if n $char(hp,pct)==100 /return
| Make sure the inventory window is open
/if "$invpanel"!="true" /press i
| Equip the helm
/finditem "Singing Steel Breastplate"
/click left equip chest
:CheckHP
| Right click for the effect
/click right equip chest
| Delay 6 seconds for the casting
/delay 60
| If we aren't full health, rinse and repeat
/if n $char(hp,pct)<100 /goto :CheckHP
| Close the inventory window
/if "$invpanel"=="TRUE" /press i
/return
Code: Select all
| - helmheal.mac -
| DeapWater Helm Heal macro
| Author, eqjim, modified by curiousgeorge, cleaned up by DeathSpiral
sub Main
| No need to heal if we are full health
/if n $char(hp,pct)==100 /return
:CheckHP
| Right click for the effect
/click right equip chest
| Delay 6 seconds for the casting
/delay 60
| If we aren't full health, rinse and repeat
/if n $char(hp,pct)<100 /goto :CheckHP
| Close the inventory window
/if "$invpanel"=="TRUE" /press i
/return
Code: Select all
Sub Main
/press 8
/return
Code: Select all
Sub Main
:hotbotton
/press 8
/delay 100
/goto :hotbotton
Code: Select all
#event MissedNote "You miss a note, bringing your song to a close!"
Sub Main
:hotbotton
/cast 8
/delay 4
/doevents
/delay 24
/stop
/delay 3
/press 8
/delay 70
/goto :hotbotton
/return
Sub Event_MissedNote
/cast 8
/delay 4
/doevents
/return
Code: Select all
Sub Main
:hotbotton
/if n $char(hp,pct)==100 /return
/press 9
/delay 60
/goto :hotbotton