Macros

From Game Theory

Jump to: navigation, search

Contents

Writing New Macros

From WoWWiki:

From the WoW Forums:

Example Macros

Here are some sample macros to do things that are generally useful. To use abilities with cooldowns via macro whenever the cooldown is up, please see Custom Addons for a small addon that can suppress the "that item is not ready yet" error messages (along with other, similar messages).

Focus Target CC

#showtooltip Polymorph(Rank 4)
/clearfocus [modifier:shift]
/focus [target=focus, noexists] [target=focus, dead] [target=focus, help]
/stopmacro [target=focus, noexists]
/cast [target=focus] Polymorph(Rank 4)

Example with conditionals, etc.

/cast [modifier:shift] Lightning Shield; [modifier:ctrl] Shamanistic Rage
/castsequence [nomodifier] reset=8/combat/target Stormstrike, Earth Shock

Magtheridon Clickers

/rw GROUP ONE
/script SetRaidTargetIcon("Knewt", 8);
/script SetRaidTargetIcon("Foker", 7);
/script SetRaidTargetIcon("Tantred", 6);
/script SetRaidTargetIcon("Natalyst", 5);
/script SetRaidTargetIcon("Bleyne", 4); 
/rw GROUP TWO
/script SetRaidTargetIcon("Anderr", 8);
/script SetRaidTargetIcon("Orend", 7);
/script SetRaidTargetIcon("Tinmor", 6);
/script SetRaidTargetIcon("Neverwind", 5);
/script SetRaidTargetIcon("Vong", 4); 

Warlock Summon

/script local C; if(GetNumRaidMembers()==0) then C = "PARTY" else C = "RAID" end SendChatMessage("Summoning %t to << "..GetMinimapZoneText().." >>. Please assist.", C)
/cast Ritual of Summoning
Personal tools