target level snip!

kombat

Spammer
Joined
Feb 25, 2007
Messages
66
Reaction score
0
Points
0
hi im looking for the snip for the following.....



if/ mob/target level is between 50 and 60) {
/eat my shorts!
}


thanks in advance :).
 
hi im looking for the snip for the following.....



if/ mob/target level is between 50 and 60) {
/eat my shorts!
}


thanks in advance :).

/if (${Target.Level} > 49 && ${Target.Level} < 61) {
/eat my shorts!
}

Probably a more efficient way to do it, but this will work.
 
Or you can use the Range.Between TLO with MMOBugs compile
/if (${Range.Between[49,61:${Target.Level}]}) /dothis