What im trying to do is get my char to do these skills while attack is on..and to stop attempting them when attack is off.
Doesnt seem to do anything as it says it has no compare for statement 'false'.
Anyway, here's my code. If anyone can help please post idea's here :) thanks!
Code: Select all
|** A macro to use my kick and taunt skills as well as tracking and whatnot for my ranger
**|
sub main
:start
/if $combat == TRUE {
/goto :abilities
}else /if $combat == FALSE {
/goto :start
}
/return
:abilities
/if n $char(ability,"Tracking")>0 /doability "Tracking"
/if n $char(ability,"Sense Heading")>0 /doability "Sense Heading"
/if n $char(ability,"Kick")>0 /doability "Kick"
/if n $char(ability,"Taunt")>0 /doability "Taunt"
/return

