Now, I think i have an idea how to do this, but not sure because in the help file it says
Code: Select all
$char(mana,pct)I dont know if it does return the players mana value even if a target is selected so wanted to see if anyone knew if it would work (since its in my heal loop, i'd have selected my target for healing, then it would check to see how much mana i had..and if i was LoM it would tell them that and how much I had).
So i'll write the code i think would do this, but would like feedback if possible :) thanks!
Here's the part of the script im working on atm
Code: Select all
:Casters
/if n $char(mana,pct)<=25
/gsay Low on mana currently at "$char(mana,pct)" percent!
To continue (the following is still part of the above code)
Code: Select all
/delay 1
/sit off
/gsay SHealing $target(name)
/cast "PLAYER_1"
/if n $v23==0 {
/call MemorizeSpell "PLAYER_1" 1
/delay 10
/sit off
}
/delay 5s
/sit on
/goto :LoopStart


