Trying to make a better coercer bot

Gene2713

Active Member
if ${PossMode} && ${Me.Ability[Possess Essence].IsReady}
{
call CastSpell "Possess Essence"
if ${Return}
return
}

That is my line for pulling up a pet on the coercer in my script. However im wondering is there an easy way to say to the bot only when not named? The problem is when i look at him and its a namer, he just sits there trying to pull up a pet. I need him to only pull up pets when target is not named. Hoping one of you guys has an easy solution. Thank you :yea:
 

bob_the_builder

Well-Known Member
Code:
if !${Me.Pet(exists)} && ${PossMode} && ${Me.Ability[Possess Essence].IsReady} && !${Actor[${KillTarget}].Type.Equal[NamedNPC]}
		call CastSpell "Possess Essence"
 
Top Bottom