Awel 0 Report post Posted January 2, 2017 Can any of you druids post the simple macro to cancel any form you are presently in? TIA 0 Share this post Link to post Share on other sites
Milton 0 Report post Posted January 2, 2017 (edited) I use (for MOTW): /unbuff Aquatic Form /unbuff Moonkin Form /unbuff Dire Bear Form /unbuff Travel Form /unbuff Cat Form /cast Mark of the Wild Edit: Can't remember if it needs the SuperMacro addon. Edited January 2, 2017 by Milton 0 Share this post Link to post Share on other sites
Lorilay 12 Report post Posted January 2, 2017 /unbuff is a Supermacro command, FYI. 0 Share this post Link to post Share on other sites
Moloko 1 Report post Posted January 3, 2017 You should use the Doctor Druid add-on: http://www.vanilla-addons.com/dls/doctordruid/ It has all the macros a druid needs with convenient UI for setup. 0 Share this post Link to post Share on other sites
Awel 0 Report post Posted January 3, 2017 1 hour ago, Moloko said: You should use the Doctor Druid add-on: http://www.vanilla-addons.com/dls/doctordruid/ It has all the macros a druid needs with convenient UI for setup. I will take a look ty. 0 Share this post Link to post Share on other sites
Milton 0 Report post Posted January 3, 2017 I think also Ezdismount can be used. If u click rejuv and u are in bear form, it switches out of form automatically. 0 Share this post Link to post Share on other sites
Oakenlix 79 Report post Posted January 3, 2017 (edited) Quote /run for i=1, GetNumShapeshiftForms() do _, name, active = GetShapeshiftFormInfo(i) if( active ~= nil ) then CastShapeshiftForm(i) break end end Doesn't require any addons or anything, very useful. Not made by me, I think I googled it somewhere. Edited January 3, 2017 by Oakenlix 0 Share this post Link to post Share on other sites
superbassie 0 Report post Posted January 4, 2017 On 3-1-2017 at 2:47 AM, Moloko said: You should use the Doctor Druid add-on: http://www.vanilla-addons.com/dls/doctordruid/ It has all the macros a druid needs with convenient UI for setup. Looks like an nice addon. Unfortunately the Cat form macro doesn't seem to work for me. Bear works fine. I also use Prowler, works pretty well. Only issue I have is that Cat form doesn't go into Prowl when I press it again. 0 Share this post Link to post Share on other sites
Faith 5 Report post Posted January 5, 2017 (edited) I use the game as I did in vanilla. I don't use macro addons. In fact I probably currently use only 5-7 addons. My shape shift keybinds: shift-spacebar = kitty ctrl-spacebar = bear ctrl-e = travel form ctrl-middleMouseClick = aquatic to leave any of these respective forms repeat keyBind. There is no need for complex addons or macros (imo) and it's nice to keep your memory clean of too many addons. Have fun and good luck ~ Faith ~ Edited January 5, 2017 by Faith 0 Share this post Link to post Share on other sites
taladril 43 Report post Posted January 5, 2017 For dedicated ferals shapeshifting is more than just a casual spellcast. Being able to spam a button or do powershifting requires addons and macros beyond a two button hotkey. 0 Share this post Link to post Share on other sites
Faith 5 Report post Posted January 5, 2017 (edited) 36 minutes ago, taladril said: Faith you're the greatest! ~ taladril to compensate for lag in the heat of battle Taladril is correct. Edited January 5, 2017 by Faith 0 Share this post Link to post Share on other sites
Wortgewandt 5 Report post Posted January 5, 2017 I'm compensating serverlag through this macro: /script u=UnitMana('Player'); c=CastSpellByName; f=UnitPowerType("Player"); if (u<=30) and (f==3) then c"Cat Form"; elseif (f==0) then c"Cat Form"; end; It blocks shapeshifting if my energy is higher/equal to 30. This is just one of several ofcourse 0 Share this post Link to post Share on other sites
Dommeil 0 Report post Posted January 6, 2017 /script if not buffed("Cat Form", 'player') then cast("Cat Form(Shapeshift)")end; This one also works. Not sure if you need SuperMacro for this to work (doesn't matter because you need it anyways), for different forms just swap out "cat" with whatever form you're making a macro for. 0 Share this post Link to post Share on other sites
Dommeil 0 Report post Posted January 6, 2017 sorry for the double post, just realized i answered a completely different question :D maybe someone's coming here to get spammable shapeshift buttons that won't break form immediately, which is what the macro i posted does. fml 0 Share this post Link to post Share on other sites
Narki 0 Report post Posted January 6, 2017 Prowler addon <3 http://addons.us.to/addon/prowler 0 Share this post Link to post Share on other sites
gashole 7 Report post Posted January 11, 2017 (edited) Caster Form /run for i = 1, GetNumShapeshiftForms() do local _, _, active = GetShapeshiftFormInfo(i) if active then CastShapeshiftForm(i) return end end Bear Form / Charge /run local _, _, active = GetShapeshiftFormInfo(1) if not active or IsControlKeyDown() then CastShapeshiftForm(1) else CastSpellByName"Feral Charge" end Cat Form / Prowl /run local _, _, active = GetShapeshiftFormInfo(3) if not active or IsControlKeyDown() then CastShapeshiftForm(3) else CastSpellByName"Prowl" end Aquatic / Travel Form /run UIErrorsFrame:UnregisterEvent"UI_ERROR_MESSAGE" for i = 2, GetNumShapeshiftForms(), 2 do local _, _, active = GetShapeshiftFormInfo(i) if not active then CastShapeshiftForm(i) end if i == 2 then UIErrorsFrame:RegisterEvent"UI_ERROR_MESSAGE" end end Edited January 12, 2017 by gashole 1 Share this post Link to post Share on other sites
gashole 7 Report post Posted January 11, 2017 Also, the macros above do not require anything extra to be installed. 0 Share this post Link to post Share on other sites
Powerfulnoun 6 Report post Posted January 12, 2017 The addon ez-dismount, which everyone should be using so you don't have to manually remove yourself from the mount, will also shift you out of forms by pressing any other button not usable in the form you're currently in. 0 Share this post Link to post Share on other sites
Wild Slick 2 Report post Posted January 14, 2017 Bear Form from any form, 2 clicks. /script local s,_ for i=1,5 do _,_,s=GetShapeshiftFormInfo(i)if s then CastShapeshiftForm(i)break end end if not s then CastShapeshiftForm(1) end 0 Share this post Link to post Share on other sites
IronLion 0 Report post Posted January 15, 2017 Need help for macro: from any stance switch to Bear form, cast Bush. If i already in Bear form - cast Bush. Without SuperMacro plz. 0 Share this post Link to post Share on other sites
gashole 7 Report post Posted January 15, 2017 6 hours ago, IronLion said: Need help for macro: from any stance switch to Bear form, cast Bush. If i already in Bear form - cast Bush. Without SuperMacro plz. /run local _, _, active = GetShapeshiftFormInfo(1) if not active or IsControlKeyDown() then for i = 2, 4 do _, _, active = GetShapeshiftFormInfo(i) if active then CastShapeshiftForm(i) return end end CastShapeshiftForm(1) else CastSpellByName"Bash" end 0 Share this post Link to post Share on other sites
IronLion 0 Report post Posted January 16, 2017 (edited) 21 час назад, gashole сказал: /run local _, _, active = GetShapeshiftFormInfo(1) if not active or IsControlKeyDown() then for i = 2, 4 do _, _, active = GetShapeshiftFormInfo(i) if active then CastShapeshiftForm(i) return end end CastShapeshiftForm(1) else CastSpellByName"Bash" end thanks! How i can get tooltip for Bash (CD etc.)? Edited January 16, 2017 by IronLion 0 Share this post Link to post Share on other sites
gashole 7 Report post Posted January 16, 2017 7 hours ago, IronLion said: thanks! How i can get tooltip for Bash (CD etc.)? You would need to find an AddOn that adds those features for macros. 0 Share this post Link to post Share on other sites
Trueferall 0 Report post Posted July 14, 2021 (edited) Guys can u pls help me to do macro when im in bear form but need to pres barkskin and after jump back in bear. Like If bear form - then jump to cast form or if castform then- press barkskin- then get back bear form- end. Without super macro and so on. Edited July 14, 2021 by Trueferall 0 Share this post Link to post Share on other sites
Quick Hit 0 Report post Posted January 27, 2022 How do I use macros? 0 Share this post Link to post Share on other sites