This site makes extensive use of JavaScript.
Please enable JavaScript in your browser.
Can I make a macro that'll switch specs?
Post Reply
Return to board index
Post by
1312500
This post was from a user who has deleted their account.
Post by
Nulgar
/equipset DPS
/run SetActiveSpecGroup(1)
/equipset Tank
/run SetActiveSpecGroup(2)
In this order because the spec swap is a cast, during which you cannot change items.
Post by
Farseer22
I'm at work so cannot test the macro, but I believe the macro below will work. It assumes that your 'DPS' spec is your primary spec.
/equipset Tank; DPS
/run local x=GetActiveSpecGroup(); if x==1 then SetActiveSpecGroup(2) else SetActiveSpecGroup(1); end
Post by
Nulgar
Oh, good thinking combining it into one macro.
I would prefer two macros though, simply in case the Set Swap somehow didn't work, so I could press that macro again to equip just the Set, while the spec change would do nothing.
Then again...
/equipset Tank; DPS
/stopmacro
/run local x=GetActiveSpecGroup(); if x==1 then SetActiveSpecGroup(2) else SetActiveSpecGroup(1); end
With this macro, you can alt+click the macro to equip the Set for your current spec, while a normal click triggers the Spec&Set Swap :)
There's also the possibility to use 'iconic' items from each set to indicate whether you are wearing the right set for your current spec:
#showtooltip Sharp DPS Sword; Gigantic Tank Shield
It displays the item for the current spec, and the game will add a green border if that item is equipped.
However, you'll have to update the macro when you acquire upgrades for these items.
Post Reply
You are not logged in. Please
log in
to post a reply or
register
if you don't already have an account.