Very useful macro for every druids

Re: Very useful macro for every druids

by Takefive » Tue Jul 28, 2015 9:40 am

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
Takefive
Grunt
Grunt
 

Re: Very useful macro for every druids

by varjopuoli » Thu Aug 20, 2015 8:05 pm

Hi!

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

Re: Very useful macro for every druids

by forsaken_toys » Sun Jan 31, 2016 12:18 am

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.
forsaken_toys
Sergeant
Sergeant
 

Re: Very useful macro for every druids

by rotten » Tue Mar 15, 2016 4:18 pm

Forgive me if this was already mentioned somewhere but I am seeking a spammable maul macro that wont cancel my autoattack pl. ty
rotten
Senior Sergeant
Senior Sergeant
 

Re: Very useful macro for every druids

by RedBanner » Sun Mar 27, 2016 7:50 pm

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.
Join #macrochat text channel for macro assistance (no sign-up required): Discord.
I'm not a pro, but I love building macros, sharing what I know, and learning more.
User avatar
RedBanner
Grunt
Grunt
 

Previous

Return to Druid