Code: Select all
#turbo
#Include spellcast.inc
Sub Main
:loop
/if (${Target.PctHPs}<70) {
/goto :heal
} else {
/goto :loop
}
:heal
/cast 8
/goto :loop Moderator: MacroQuest Developers
Code: Select all
#turbo
#Include spellcast.inc
Sub Main
:loop
/if (${Target.PctHPs}<70) {
/goto :heal
} else {
/goto :loop
}
:heal
/cast 8
/goto :loop Code: Select all
/if this {
do this
this
and this
}
but not this
Code: Select all
sub main
:loop
/if (${Target.PctHPs}<70) {
/cast 8
}
/goto :loop
/return