What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Do not Target

blaze

Member
Joined
Sep 17, 2014
Messages
66
Reaction score
0
How can I say do not target this mob "name of the mob" ?
Code:
                while (me.target != null && isAttackable(me.target))
                // once we have a target, and this target is attackable (so its no NPC) the bot will jump into this loop.
                // this loops contains the "combat routine"
                {
                    if (angle(me.target, me) > 45 && angle(me.target, me) < 315)
 
Hi, you can do something like.

if(me.target.name != "Target Name") return;
 
Back
Top