Page 1 of 1

Rogue Hide toggle macro

Posted: Sun Aug 23, 2015 7:26 pm
by Bill D Cat
Back in Chapter 2 or so you used to be able to toggle the Rogue's skill "Hide" by just pressing the hotkey for it in the game. But somewhere along the line the developers changed the behavior so that it just reapplies the buff. I got tired of having to manually cancel it by right clicking the buff icon, so I created this little in-game macro that will toggle it for me. Sure, the buff gets removed when you get into combat, but sometimes I just use Hide to run past mobs I don't want to fight, and then want to turn it back off when I'm out of range. So if you want to use it, here it is.

Code: Select all

/run a=1 b="X" while b~=nil do b=UnitBuff("player",a) if b~=nil then if b=="Hide" then CancelPlayerBuff(a) return else a=a+1 end end end CastSpellByName("Hide")