Macros
From Game Theory
Revision as of 08:05, 7 February 2008; view current revision
←Older revision | Newer revision→
←Older revision | Newer revision→
Contents |
[edit]
Writing New Macros
From WoWWiki:
From the WoW Forums:
[edit]
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).
[edit]
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)
[edit]
Example with conditionals, etc.
/cast [modifier:shift] Lightning Shield; [modifier:ctrl] Shamanistic Rage /castsequence [nomodifier] reset=8/combat/target Stormstrike, Earth Shock
[edit]
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);
[edit]
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

