Code: Select all
/target npc notid 409 notid 555 orc/Bored
P.S. Thanks for adding $alert(#,id), but I was an idiot for requesting it before testing if notid worked the way I wanted it to.
Moderator: MacroQuest Developers
Code: Select all
/target npc notid 409 notid 555 orcCode: Select all
sub calmStuff
:lookAgain
/press ESC
/target noalert 5 range 46 50 radius 150
/if n $target(id)==0 {
/echo all set pulling...
/return
}
/echo got one.. $target(name)
[b]/alert add 5 $target(name)[/b]
/face
/delay 1s
:recastCalm
/echo casting..
/call cast "Calm"
/echo done casting.. $return
/delay 1
/if n $return>1 /goto :recastCalm
/if n $return==1 {
/echo invalid spell..
/return
}
/echo looking again..
/goto :lookAgain
/return