Provo Macro Help

Wayside

Novice
I've been trying to create a provo training macro to gain my skill using Steam and I can't quite get it right.

I'm trying to create a macro that targets mobs and provokes them onto myself. This one below won't work. What am I missing here? Thanks in advance for the help!

Code:
if getenemy 'gray' 'criminal' 'enemy' 'nearest'
  @setalias 'enemy'
  useskill 'Provocation'
  waitfortarget 15000
  target! 'enemy'
  waitfortarget 15000
  target! 'enemy'
  waitfortarget 15000
  target! 'self'
  pause 5000
  end
 

the_bubba

Journeyman
Try this

Code:
if getenemy 'gray' 'criminal' 'enemy' 'nearest'
  @setalias 'enemy'
  useskill 'Provocation'
  waitfortarget 15000
  target! 'enemy'
  waitfortarget 15000
  target! 'self'
  pause 12000
  end
 

Wayside

Novice
Try this

Code:
if getenemy 'gray' 'criminal' 'enemy' 'nearest'
  @setalias 'enemy'
  useskill 'Provocation'
  waitfortarget 15000
  target! 'enemy'
  waitfortarget 15000
  target! 'self'
  pause 12000
  end

Thanks!

The first waitfortarget was meant for any type of instrument which I probably still need. Just realized that.
 

TyroneG

Master
Thanks!

The first waitfortarget was meant for any type of instrument which I probably still need. Just realized that.

Could just usetype of your instrument each time before using the skill. That way it doesn't really matter when an instrument breaks and you don't have to bother targeting an instrument when one does.
 
Top