Powers Macro


American_Samurai

 

Posted

Hi all

Is there any Macro that activate more than one power once i click on it?

for example ( for a /RAD corruptor, he got to toggle powers <Enervating Filed> & <Radiation Infection>, what i want exactly once i click on the macro it will active the 2 powers )

Thanks


 

Posted

The inital design of the macro system will not allow the activation of more than one power in a macro or keybind. this information is in the players guide.
a string like /macro Rad "powexec_name Enervating Field$$powexec_name Radiation Infection" will not work as the game will error trying to activate 2 powers at once. each power has its own animation linked to it as well and the game cant do both animations at once.


 

Posted

Well since they are toggles you can use powexectoggleon and just push the same macro twice.

<font class="small">Code:[/color]<hr /><pre>
/macro RAD "powexectoggleon Enervating Field$$powexectoggleon Radiation Infection"
</pre><hr />

That will turn on RI first assuming you have a mob targeted, then switch on EF with another click.


 

Posted

Well I know you asked for a single click macro.... Can't help you there. But, the following keybind will allow you to assign a key to activate one power on the key press and the second power on the key release.

/bind g "+ $$powexectoggleon Radiation Infection$$powexectoggleon Enervating Field"

Note: There is a [space] between the + and $$. It is required. Also, you may have to hold the key down a moment to let the first power finish activation before releasing the key to start the second power activation.