Gaming
 
[Ackis]

Ackis 507 edits since March 24, 2007

507

User:Ackis/MyMacros

From WoWWiki

Contents

Pre-3.0 Macros

Hunter Macros

Misdirect macro

Change whoever you want to misdirect in the focus. This will misdirect your focus (if it exists), make your misdirect target your focus, and notify raid/them via a whisper. If your target is a friendly person, it will misdirect them, and send them a whisper, and announce in raid some dumb message. If you have no focus, and no target or you're targeting a hostile mob it'll misdirect your pet. Pretty handy. This is at 255 character limit, so if the name is longer than "Rxpleasure" there will be issues.

#showtooltip Misdirection 
/focus Rxpleasure
/cast [target=focus,exists][help][target=pet,exists,nodead] Misdirection
/script local u=UnitName;SendChatMessage ("You are now being misdirected.","WHISPER",nil,u"focus" or u"Target" or u"Player")
/ra MD on %f

Mount Macro

Toggles aspect of the monkey on for when you mount, basically a nice 1 button mount macro for you. Will mount your land mount in azeroth, flying mount in outlands. Trying to extend this to cast Aspect of the Hawk when you dismount, but I'm having issues. :P

/cast [nomounted] !Aspect of the Monkey
/use [flyable,nomounted] Reins of the Onyx Netherwing Drake
/use [nomounted, noflyable] Swift Green Hawkstrider
/dismount

Steady shot macro

Change the reset to be your autoshot time. Will cast steady shot without clipping autoshot, and will cause your pet to use kill command (if it's up) on the pets target.

#showtooltip Steady Shot
/castsequence reset=2.17 !Auto Shot, Steady Shot
/cast [target=pettarget,exists] Kill Command

Pet Attack/Mark

Sends your pet in to attack/hunters marks the target.

/cast Hunter's Mark
/petattack

Priest Macros

To use all of these macros, create a new macro with the '?' symbol and paste the code in. Modify as necessary.

One button SW:P/Renew

This will cast renew on your target if it's friendly, yourself if you use your self cast button, your mouse over target (ie: raid frames). If you're targeting a hostile target, it will cast SW:P on the target. if you are targeting nothing, it will cast Renew on yourself. If you're in shadow form and have nothing targetted it will cast SW:P on your focus.

#showtooltip
/cast [modifier:SELFCAST, target=player,stance:0][help,stance:0][target=mouseover,exists,stance:0] Renew;[harm] Shadow Word: Pain;[target=player,stance:0] Renew; [target=focus,harm,stance:1] Shadow Word: Pain


Stopcasting Mss Dispel

Will stop whatever you're casting and cast Mass Dispel. Very useful for Felmyst.

#showtooltop
/stopcasting
/cast Mass Dispel

Mount Macro

Will cast Inner Fire on yourself before mounting, use a flying mount in outland, and a land mount in Azeroth. Will use a random land mount as well if you want. Just replace the item IDs. If you don't know the item ID of your mounts, get a mod called Querier and type "/iq [mount link]" and it will tell you.

#showtooltip item:35226
/cast [nomounted] Inner Fire
/cast [flyable,nomounted] item:35226
/castrandom [nomounted, noflyable]  item:33225, item:33809
/dismount

Assist Healing

This will cast a greater heal on the person who your current target is targetting. If you're targeting a friendly, it will greater heal them. I personally use this for MT healing on the Eredar Twins in Sunwell.

#showtooltop Greater Heal
/stopcasting
/targetexact Lady Sacrolash
/cast [help] [target=targettarget,help] [] Greater Heal(Rank 5)

M'uru Dispel Macro without losing normal functionality

This is a macro I use for dispels on the M'uru fight. Because I'm lazy, I don't want to switch out macros for different fights, etc so this retains original functionality with the added benefit of automatically targeting Dark Fiends and dispelling them if they exist.

#showtooltip Dispel Magic
/targetexact Dark Fiend
/stopcasting
/cast  [mod:SELFCAST,target=player] [exists] [target=player] Dispel Magic

Glimmering Naaru Silver w/ Troll Racial

Will use berserking then cast the channeling affects of the trinket. Very nifty.

#showtooltip item:34430
/cast Berserking(Racial)
/cast item:34430

Spirit on use trinkets

Will pop both spirit trinkets (Earring and Bangle) and inner focus. If you don't have one of them equipped it won't give any errors as well. :)

#showtooltip item:30665
/cast Inner Focus
/cast item:28370 -- Bangle
/cast item:30665 -- Earring
/script UIErrorsFrame:Clear()

Drinking Macro

Nice macro I wrote which will use Mana Biscuits out side of combat, and Mana Potion Injectors in combat. If you don't have mana biscuits it will try Glacier Water, then underspore pod, than dreanic water. You can change IDs around as you see fit.

#showtooltip
/use [nocombat] item:34062; [combat] item:33093 -- Biscuit/Injector
/use [nocombat] item:22018; [combat] item:33093 -- Glacier/Injector
/use item:28112 -- Underspore
/use item:27860 -- Dreanic

One button health stone

Uses the highest rank of health stone first, down to the lowest. If none are found, it will try to use a charged crystal focus.

#showtooltip
/use item:22105
/use item:22104
/use item:22103
/use item:32578

Shadow Protection Potions

Will use a conjured shadow protection potion first, if it doesn't exist it will use a normal one.

#showtooltip item:22846
/use item:32845
/use item:22846

Fire Protection Potions

Same as the shadow one, but for fire.

#showtooltip item:22841
/use item:32846
/use item:22841

Rogue Macros

Pick Pocket Macro

Will auto loot when pickpocketing.

#showtooltip
/script SetAutoLootDefault(true)
/cast Pick Pocket
/in 3 /script SetAutoLootDefault(false)