Page 3 of 4

Re: Useful Vanilla WoW 1.12.1 Macros by Wayleran

PostPosted: Mon Dec 28, 2015 9:42 am
by stif
Hi guys!
i dont know if this link has ben put out or do it even works but still wanted to share it
http://wowwiki.wikia.com/wiki/Useful_macros_(1.0)

Re: Useful Vanilla WoW 1.12.1 Macros by Wayleran

PostPosted: Mon Dec 28, 2015 5:57 pm
by Bazinga

ftfy

(mark urls and click URL button)

Re: Useful Vanilla WoW 1.12.1 Macros by Wayleran

PostPosted: Mon Jan 04, 2016 4:45 pm
by OnĂ­rica
Very good work.

Re: Useful Vanilla WoW 1.12.1 Macros by Wayleran

PostPosted: Mon Jan 11, 2016 10:05 pm
by Kaer
Thanks for the share!

Re: Useful Vanilla WoW 1.12.1 Macros by Wayleran

PostPosted: Tue Feb 09, 2016 1:03 pm
by mook06
I keep forgetting to recast Find Minerals, so I wrote a simple mount macro that will cast Track Minerals before mounting:

The macro is set to use the mount in the Top Left slot of your bags (bag 0, slot 1, X)


/script if (GetTrackingTexture()=="Interface\\Icons\\Spell_Nature_Earthquake") then UseContainerItem(0, 1, 1) else CastSpellByName("Find Minerals") end;

Re: Useful Vanilla WoW 1.12.1 Macros by Wayleran

PostPosted: Sat Feb 13, 2016 4:29 pm
by huertakas
I tried to make a macro to use my trinket but failed.
/script UseInventoryItem(13)
does nothing
any tips?

Cast on target

PostPosted: Sat Feb 13, 2016 6:09 pm
by DarkInos
Hello,
I would really like to figure out some macro for my priest. I exp war + priest combo. So it would be quite usefull to have macro for few spells only for this duo.
Something like... /cast (target=NAME) Power Word: Shield (Rank X)
... Maybe it is easy or dumf for others but.. I really cant find any solution here or ther forums :X There are tons of macros but I cannot find this one.

Anyone who have some easy solution?

Re: Useful Vanilla WoW 1.12.1 Macros by Wayleran

PostPosted: Fri Feb 19, 2016 3:15 am
by Exorcista
Any Good macro for hunter like /petattack or something similar, i tryed few but doesnt seem to work, i would like one, essentialy when u change target to maximize dps on that target u switched to, tvm if anyone can get one

Re: Useful Vanilla WoW 1.12.1 Macros by Wayleran

PostPosted: Thu Feb 25, 2016 7:32 am
by Dyaxler
Didn't know where else to share this... here are some Macro's I wrote for my Priest:

*UPDATED* I discovered that if you use the "short-cut" 'cast' from Supermacro instead of 'CastSpellByName' it messes with the range indicators.

Code: Select all
-- Cast SWP if it's not already on the target
/script UIErrorsFrame:Hide()
/script if not buffed("Shadow Word: Pain", 'target') then CastSpellByName("Shadow Word: Pain") end

-- Don't double up on Renew
/script UIErrorsFrame:Hide()
/script if UnitExists("target") and UnitIsFriend("target", "player") then if not buffed("Renew", 'target') then CastSpellByName("Renew") end return end if not buffed("Renew", 'player') then cast("Renew",1) end

-- Self-Buffs:
/script if not buffed("Inner Fire", 'player') then CastSpellByName("Inner Fire") else if not buffed("Power Word: Fortitude", 'player') then CastSpellByName("Power Word: Fortitude",1) end;end

-- Rotation:
/script UIErrorsFrame:Hide()
/script if not buffed("Shadow Word: Pain", 'target') then CastSpellByName("Shadow Word: Pain") end DoOrder("Mind Blast", "Smite")

-- Mashable Wand Cast
/script UIErrorsFrame:Hide()
/script if (UnitName('target')==nil) then TargetNearestEnemy() else if not IsAutoRepeatAction(12) then CastSpellByName("Shoot") end;end

-- Instant Casts
/script UIErrorsFrame:Hide()
/script SpellStopCasting()
/script CastSpellByName("Desperate Prayer",1)

/script UIErrorsFrame:Hide()
/script SpellStopCasting()
/script CastSpellByName("Fade",1)

/script UIErrorsFrame:Hide()
/script SpellStopCasting()
/script CastSpellByName("Power Word: Shield",1)

-- Self-heal if no target
/script UIErrorsFrame:Hide()
/script SpellStopCasting()
/script if UnitExists("target") then CastSpellByName("Lesser Heal") else CastSpellByName("Lesser Heal",1) end

/script UIErrorsFrame:Hide()
/script SpellStopCasting()
/script if UnitExists("target") then CastSpellByName("Heal") else CastSpellByName("Heal",1) end

/script UIErrorsFrame:Hide()
/script SpellStopCasting()
/script if UnitExists("target") then CastSpellByName("Flash Heal") else CastSpellByName("Flash Heal",1) end

Re: Useful Vanilla WoW 1.12.1 Macros by Wayleran

PostPosted: Sun Mar 06, 2016 10:10 pm
by Bratok
Hello guys!
Im looking for a macros for warrior to cast break..
I found something like this:

Shield bash macro:

#showtooltip Shield bash
/stopattack
/equipslot 4 <1H>
/equipslot 5 <Shield>
/cast Defensive Stance
/cast Shield bash

But this do not work at all..
Even simple macro #showtooltip looks like I just say it..
Please help!