Intstead of the /delay 5m that he uses when OOM to get mana I would like the macro to continually check for mana untill FM and then restart the spell casting. That way I can do other things while he is getting mana ie use sense heading skill while sitting or even run a fishing sub macro untill the char is FM. Here is what I have so far:
Code: Select all
#include spells.mac
Sub Main
:Loop
/target myself
/stand
/call spells 8 5
/if n $v99==999 /goto :GetMana
/if n $char(hp,pct)<10 /goto :GetMana
/delay 5
/click left destroy
|added for casting summoning spells
/goto :Loop
/return
:GetMana
/delay 5
/sit
/if n $char(mana,pct)==100 /goto :loop
/goto :Getmana
Code: Select all
/if n $char(mana,pct)==100 /goto :loop Thank you.

