tlbj6142
05-23-2008, 04:21 PM
Found this (http://elitistjerks.com/f31/t25842-feral_druid_powershifting_macros_thresholds_mana_m anagement/) today. It looks like a great idea!
Here's the low-down. Use this macro to replace your existing Mangle (Cat) button.
#showtooltip
/run if pwx then local f="Cat Form";f=GetSpellCooldown(f)>0 or UnitMana('player')>pws or not IsUsableSpell(f) or CancelPlayerBuff(f) end
/cast [form] Mangle
/stopmacro [form]
/cast Cat Form The above will powershift you if you are not in the GCD, you have enough mana to shift back into cat form, and you have less than 'pws' energy (defaults to 8).
And use this macro to enable/disable the auto-powershift above...
/run local c=DEFAULT_CHAT_FRAME if pwx then pwx=false c:AddMessage("Powershift disabled",1,1,1) else pwx=true pws=8 c:AddMessage("Powershift enabled, 8 energy threshold",1,1,1)end
You can also change 'Mangle' to Rip, Shred, Bite, Maim, etc. in the first macro if you like. And change the threshold at which the auto-powershift kicks in by changing the '8' to some other number in the 2nd macro.
I plan to create two auto-shift macros. One for mangle (PvE and PvP) and one for Maim (PvP). I'll report back later on the success, etc.
Here's the low-down. Use this macro to replace your existing Mangle (Cat) button.
#showtooltip
/run if pwx then local f="Cat Form";f=GetSpellCooldown(f)>0 or UnitMana('player')>pws or not IsUsableSpell(f) or CancelPlayerBuff(f) end
/cast [form] Mangle
/stopmacro [form]
/cast Cat Form The above will powershift you if you are not in the GCD, you have enough mana to shift back into cat form, and you have less than 'pws' energy (defaults to 8).
And use this macro to enable/disable the auto-powershift above...
/run local c=DEFAULT_CHAT_FRAME if pwx then pwx=false c:AddMessage("Powershift disabled",1,1,1) else pwx=true pws=8 c:AddMessage("Powershift enabled, 8 energy threshold",1,1,1)end
You can also change 'Mangle' to Rip, Shred, Bite, Maim, etc. in the first macro if you like. And change the threshold at which the auto-powershift kicks in by changing the '8' to some other number in the 2nd macro.
I plan to create two auto-shift macros. One for mangle (PvE and PvP) and one for Maim (PvP). I'll report back later on the success, etc.