Macros: Q/A and Requests

Taitaih said:
This is probably to buy a limited item that you need to close the shop for. I don't have a macro off the top of my head for this one, I'll have to do some digging.



Pretty much this, [item]Formal Dangui[/item] isn't to popular of an item to find on the auction house :p Ty in advance
 
#showtooltip Innervate

/cast [target=player] Innervate



Should work, please let me know if it doesn't. I've been programming so much the past few days I'm liable to screw this up.
 
I'm not sure how to pull this one off to be honest. If anyone does, let me know please.



My best recommendation is to make multiple gear sets using Blizzard's Outfitter and swap them using that.
 
mhm i would prefer my macro cause 1 click equip shield and again equip off hand

the way it would work ( heared once about it but not sure if its possible) that you can equip something from your bag with this /equipslot X bagslot Y

and its also impossible to put a wow outfit set in a macro or?



edit: ok found a way how it works : http://www.wowwiki.com/Making_a_macro

"/use <bag> <slot>Edit

You can also use an item in a specific bag location. Lets say you always keep the food you want to feed your pet in the first slot of your backpack. You can easily write a macro to feed your pet as follows:



/cast Feed Pet

/use 0 1

Bags are numbered 0-4 from right to left (0 is always the backpack) and the slots are numbered starting at 1 going left to right, top to bottom (like reading): "

copyed this from wowiki



and my macro works now how i wanted it :

/equipslot 17 4 1

so it will always equip what on 1. posi in my 4. bag = change shield / 1.mace
 
Is there a way to:



When I use Ambush, that it switches from Sword to Dagger, and then back to Sword once Ambush have been used?
 
Looking for a shaman mouse over macro that if no mouseover will cast on target. Plz help meeee



Edit: Spell is Purge.
 
Taitaih said:
#showtooltip Purge

/cast [target=mouseover, exists] Purge; Purge



can be shorten to this :

Code:
/cast [@mouseover,harm][]Purge

You can remplace Purge by gouge btw



Also Taitaih you can shrink

Code:
/cast [target=mouseover,help] Power Word: Shield; [help] Power Word: Shield; Power Word: Shield

to

Code:
/cast [@mouseover,help][]Power Word: Shield

will do the exact same thing.



You rarely need 2 time the name of the same spell, you can chain condition for the same spell

ex i use

Code:
/cast [@mouseover,help][@player,mod][help][@focus,help,nodead][@party1,exists,nodead][]Helpfull spell

(this macro target your mouseover if any, you if a mod is used, helpfull target if any, then focus if helpfull and not dead, then your arena mate for 2v2, if not dead, and if none exists just cast the spell normaly so on you for like duels.) Those macro are really handy for targeting in 2v2.

and

Code:
/cast [@mouseover,harm][@focus,mod][]Harmfull spell

/startattack

(this one is simple, cast on the mouseover if harmfull, then on your focus if you use a mod otherwie cast the spell normaly on your target and start attack. Good to add startattack for shamans shock, paladin judges ect...)



the empty [] mean if none of the precedent conditions are complete execute the spell normaly, so basicly it's what you do with "[harm]purge;purge" just type "[harm][]purge"



(also your 2 step /click macro can be done in 1 macro :

Code:
#showtooltip Charge

/eq Shadow's Edge

/cancelaura Bladestorm

/cancelaura Hand of Protection

/cast [mod:alt]Berserker Stance;[nomod]Battle Stance

/cast [mod:alt][@focus,mod:ctrl]Intercept

/cast [mod:ctrl,@focus][]Charge

that's 218 char long and should work like your old one)



I personaly use /click for equip items

Ex for my warrior i got 2 macro

/eq Onehand

/eq Shield



and a

/eq 2hand



Then instead of adding /eq in my macros i insert /click BonusButton12 (wich is my eq shield) or /click BonusButton11 for my 2hand

it's very handy because when you change shield you just have one macro to edit, and it save more space in your macros.
 
Ty for macro Taitaih, now i can piss off both efc and healers more easily:). Also what about a macro that would Windshear mouseover, and if no mouseover windshear focus? Again thx for Purge one.
 
use

Code:
/cast [@mouseover,harm][@focus]windshear

But you i recommand using :

Code:
/cast [@mouseover,harm][@focus]windshear

/cast windshear

since Windshear doesn't trigger gcd it's ok to make a 2 line macro.

What it will do is basicly if your focus is LoS / not in front of you / dead / not set / etc... it will kick your target.

So basicly you can just show your back to your focus to kick your target.

If really you can't LoS your focus then you have to mouseover your target to kick it. Otherwise it will kick the focus.
 
I suggest a [mod:alt] or something of the sort for distinguishing between focus targets and normal targets.
 
<;;BUMP;;>

If possible, Can I request some awesome macro maker to make a macro which does something on the lines of...

/tar happybunny

/cast unholy frenzy

/tar previous player

cheers.
 
Wittyscrub said:
/tar happybunny

/cast unholy frenzy

/tar previous player



Well Im not an experience macro haxxor and I might have missunderstood what it is you want to do exactly but this thing will use the spell on you, regardless of who you got targeted, I assume you are Happybunny and want to cast it on yourself.



Code:
/cast [@player] Unholy Frenzy
 

Users who are viewing this thread

Top