The idea is to have my melee char call in snare commands and nuke commands. The snare part I have working well now, but I am having problems with the autonuke.
Code: Select all
/if $target()==FALSE {
/return
} else {
/if n $target(hp,pct)<90
/delay 10s
/call nuke }
/if n $target(hp,pct)<20 {
/return
} else {
/if n $target(hp,pct)<90
/delay 10s
/call nuke }
I realize this is probably VERY ghetto and ugly, but my scripting skill is sux.
What is happening is the melee calls in another nuke after the target is dead, or when its below 20%.
Is there a better way to do this, or even better, have it call in a fixed # of nukes per mob?
Thanks for any assistance.

