Page 3 of 3

Re: Very useful macro for every druids

PostPosted: Tue Jul 28, 2015 9:40 am
by Takefive
essedge wrote:Would a travel macro like this one mentioned in reddit (2014) and the current wowwiki work here?


Don't think so. If I remember correctly conditionals like [indoors] were implemented during tbc expansion. CallCompanion("MOUNT", 1) is probably the part of wotlk, when all your mounts and companions moved from your bags and bank in to special companion window. IsUsableItem(94154) also points to another expansion since we have only about 20k items in Vanilla data base

Re: Very useful macro for every druids

PostPosted: Thu Aug 20, 2015 8:05 pm
by varjopuoli
Hi!

Is there good tanking macros? like shapeshifting out of form and casting spell, healing spell, same time?

Re: Very useful macro for every druids

PostPosted: Sun Jan 31, 2016 12:18 am
by forsaken_toys
You can't shift out of form and cast heal in one button, because in vanilla cancel form generates GCD. But if you spam button, you can do something like this:

Code: Select all
/run for i=1, GetNumShapeshiftForms() do _, name, active = GetShapeshiftFormInfo(i) if( active ~= nil ) then CastShapeshiftForm(i) break end end
/run CastSpellByName("Regrowth")


cancel any form, then regrowth.

Re: Very useful macro for every druids

PostPosted: Tue Mar 15, 2016 4:18 pm
by rotten
Forgive me if this was already mentioned somewhere but I am seeking a spammable maul macro that wont cancel my autoattack pl. ty

Re: Very useful macro for every druids

PostPosted: Sun Mar 27, 2016 7:50 pm
by RedBanner
rotten wrote:Forgive me if this was already mentioned somewhere but I am seeking a spammable maul macro that wont cancel my autoattack pl. ty


At the end of any macro add this line:
Code: Select all
/script if not IsCurrentAction(48) then UseAction(48) end

"48" is the button number where my auto-attack is located. By default, Auto-attack should be button 1.