Any ideas?
Code: Select all
| CanaMax.mac
| -- Shaman Helper Macro --
#include SpellSub.mac
#Event RegTime "You have stopped regenerating."
Sub Main
:Loop
/if n $char(mana,pct)>95 /call EndMacro
/goto :CheckMana
:GetMana
/call SpellSub 5 3s
:CheckMana
/delay 6
/if n $char(hp,pct)>90 /goto :GetMana
/doevents
/if n $char(mana,pct)<95 /goto :CheckMana
/goto :Loop
/return
Sub Event_RegTime
/press F1
/delay 2
/call SpellSub 7 7s
/delay 2
/return
Sub EndMacro
/echo Full Mana!
/sit on
/endmacro
/return

