Jump to content
Sign in to follow this  
LFMilk91

Need a Expert at Macros help! (DRUID)

Recommended Posts

Hey, im realy new to macros and a complete noob at it.. but if there is any1 out there who would like to help me create as close to a 1 button mash for pve grind i would really appreciate it!!! i perfer grind over quest and running all over the world turning in quests and what not.. but i would like it to be more of a 1button kind of deal while watching netflix :)

FOR DRUID

I replyed to "Vanilla Macro Thread" so here is the paste..

 

DRUID

Is there a way (with ext lua supermacro) to do something like below

Macro1:
(1)Ravage/Shred (if stealthed/behind target)
(2)Claw and Ferocious Bite (at 4 points)
(3)if targets is unbuffed and energy lower than 35 cast FFF 

(or maybe limit it down to 2 macros? Ravage/Shred + FFF (if lower than 35 Energy) or fff in claw/bite macro

so it really becomes a 1buttonmash used for pve grind

and maybe a diffrent macro for bear
Macro2:
(1)Charge
(2)Maul
(3)Faerie Fire (if unbuffed)


and 
Macro3:
(1)Cast MotW on yourself if no target if unbuffed
(2)Cast Thorns on yourself if no target if unbuffed

EDIT:
#### Macro3: Solved ####
/unshift [stance:1/2/3/4]
/script TargetUnit("player")
/script if not buffed("Mark of the Wild") then cast("Mark of the Wild") end
/script if not buffed("Thorns") then cast("Thorns") end
 

Claw and Ferocious Bite combo
/run if GetComboPoints()>=4 then CastSpellByName("Ferocious Bite") else CastSpellByName("Claw") end

and
Faerie Fire in any form
/script i=1;m=0;while(UnitBuff("player",i)~=nil) do if(strfind(UnitBuff("player",i),"Form")~=nil) then m=1; end;i=i+1;end; c=CastSpellByName; if(m==1) then c("Faerie Fire (Feral)()");else c("Faerie Fire(Rank 4)");end;

and 

Ravage and Shred auto select
/script i=1;m=0;while(UnitBuff("player",i)~=nil) do if(strfind(UnitBuff("player",i),"Ability_Ambush")~=nil) then m=1; end;i=i+1;end; c=CastSpellByName; if(m==1) then c("Ravage(rank 4)");else c("Shred(rank 5)");end;

Edited by LFMilk91
Macro3 Solved

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×