Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Clear Mobs
- unsetalias 'provoke1'
- unsetalias 'provoke2'
- //Get first mob
- if getenemy 'gray' 'criminal' 'enemy' 'nearest'
- @setalias 'provoke1' 'enemy'
- else
- sysmsg 'No Mobs within range to provoke'
- stop
- endif
- //Get Second mob - because 'nearest' is used, it will not select the same mob as above as nearest cycles through the two closest mobs
- if getenemy 'gray' 'criminal' 'enemy' 'nearest'
- @setalias 'provoke2' 'enemy'
- else
- sysmsg 'No Mobs within range to provoke'
- stop
- endif
- if getenemy 'murderer' 'humanoid'
- setalias 'asshat' 'enemy'
- // headmsg 'Found Murderer'
- endif
- // Target protection in case you have cure/heal casted it won't make you gray
- // unless you cast directly after hitting macro
- if not targetexists
- useskill 'Provocation'
- pause 600
- waitfortarget 1500
- target! 'provoke1'
- waitfortarget 1500
- if findalias 'asshat'
- target! 'asshat'
- pause 600
- // msg 'all kill'
- waitfortarget 1500
- target! 'asshat'
- unsetalias 'asshat'
- else
- target! 'provoke2'
- endif
- endif
Advertisement
Add Comment
Please, Sign In to add comment