Using aa abilities

rackarn

The Average Joe MQer
Joined
Jun 30, 2008
Messages
67
Reaction score
0
Points
6
lets say I want to do assist a player then send my pet in to attack, and then use my aa ability, in this example a shaman's aa slow. What would the correct code be?

/assist player
/pause 3
/pet attack
/pause 3
/doability ?

Can't seem to activate my aa abilities regardless of class. I'm sure I'm prolly just using the wrong command?
 
You could use the ingame command and activate by number

Code:
/alt activate 3729
Or use MQ2s command and activate by number or name

Code:
/aa act "Turgur's Swarm"
 
if you are using spell_routines.inc.. or the mq2cast plugin... you can also do:

/call Cast "AA ABILITY NAME" alt

example:

/call Cast "Frenzied Burnout" alt

just providing an alternate method for you.