While I'm at it... some ninja-ed macros from other guilds:
Always wondered when i look at peoples screenies, what those macros do that i see. Was wondering if we could put together a list of what people to use make the life of a mage that bit easier. So if you know of any useful mage macros, please feel free to post here and hopefully we can get a nice list together.
Would also like some funny ones aswell, will list one that i use below and you would be suprised how many people dont bug you anymore.
I will edit my post from time to time and add to this post to stop people having to scroll through page after page !!!
Thanks in advance...
-Funny-
/s Sorry haven't done lvl 55 water quest so the answer is no, again sorry...
-Combo's- (courtesy of Ramir)
/script SpellStopCasting()
/cast Counterspell()
/cast Presence of Mind
/cast Frostbolt(Rank 10)
-Funny- (courtesy of Doune)
/cast "Ice Block"
/target Doune
/cackle
/helpme
/pray
/cry
-Activate 2 trinkets in 1 key press - (courtesy of Dust)
/script t0 = GetInventorySlotInfo("Trinket0Slot");
/script t1 = GetInventorySlotInfo("Trinket1Slot");
/script UseInventoryItem(t0);
/script UseInventoryItem(t1);
Sheeping Macro: (courtesy Wyzik)
/script if UnitSex("target")==1 then g="F " else g="M " end;s="Poly "..g..UnitLevel("target").." %T";a=0;if GetPartyMember(1) then c="party" a=1 if GetNumRaidMembers()>0 then c="raid" end;end;if a>0 then SendChatMessage(s,c) end;
/cast Polymorph(Rank X)
---
Description: Informs your party (or raid) of the sex, level and name of your target and than casts Polymorph. If you arn't in a raid or party, you simply cast Polymorph.
Example:
/script if UnitSex("target")==1 then g="F " else g="M " end;s="Poly "..g..UnitLevel("target").." %T";a=0;if GetPartyMember(1) then c="party" a=1 if GetNumRaidMembers()>0 then c="raid" end;end;if a>0 then SendChatMessage(s,c) end;
/cast Polymorph(Rank 4)
De-curser: (courtesy Tagan)
/target [your characters name]
/cast Remove Lesser Curse
/script TargetLastEnemy();
---
Description: Removes one curse from you.
Example:
/target Joe
/cast Remove Lesser Curse
/script TargetLastEnemy();
Anti-totem: (courtesy Malakkeros, the Shaman community and Beau)
/target Earthbind Totem
/target Searing Totem
/target Magma Totem
/target Mana Spring Totem
/target Grounding Totem
/target Healing Stream Totem
/cast Shoot
/script TargetLastEnemy();
---
Description: Shoots the last totem on the list above, that is in range.
Driveby Intellect Buff: (courtesy Gamwich)
/script r=[Rank] X;l={1,14,28,42,56};if not UnitIsFriend("player","target")then TargetUnit("player");end;t=UnitLevel("target");for i=r,1,-1 do if (t>=l[ i]-10) then CastSpellByName("Arcane Intellect(Rank "..i..")");break;end;end
---
Note: You must remove the space after the [ and before the i].
Description: Calculates the highest Intellect buff the target can use and casts it on the target.
Example:
/script r=5;l={1,14,28,42,56};if not UnitIsFriend("player","target")then TargetUnit("player");end;t=UnitLevel("target");for i=r,1,-1 do if (t>=l[ i]-10) then CastSpellByName("Arcane Intellect(Rank "..i..")");break;end;end
Note: You must remove the space after the [ and before the i].
Insta-Counterspell: (courtesy Jininji)
/script SpellStopCasting();
/cast Counterspell
---
Description: Stops casting any spell currently being cast, and casts Counterspell at your target.
Multi-water: (courtesy Beau)
/stand
/script if (UnitMana("player")>[Mana cost for your Conjure Water spell]) then CastSpellByName("Conjure Water(Rank X)") else UseContainerItem(0, 1); end;
---
Description: When you have more mana than it costs to cast your Conjure Water spell, it casts it. But if you have less mana than you need, you use the first item in your backpack; usually the water you just conjured (or you could put a mana potion in the first spot, for a faster pace).
Example:
/stand
/script if (UnitMana("player")>780) then CastSpellByName("Conjure Water(Rank 7)") else UseContainerItem(0, 1); end;
Hungry or Thirsty: (courtesy Pirdo)
/script if UnitHealth('player') / UnitHealthMax('player') < 0.8 then UseContainerItem(X1, X2); end
/script if UnitMana('player') / UnitManaMax('player') < 0.8 then UseContainerItem(X1, X2); end
---
Description: Eats if your health is below 80% and/or drinks if your mana is below 80%.
Note: X1 represents the bag number, from right to left; 0-4. X2 represents the space number inside the bag (X1), from left to right.
Example:
/script if UnitHealth('player') / UnitHealthMax('player') < 0.8 then UseContainerItem(0, 1); end
/script if UnitMana('player') / UnitManaMax('player') < 0.8 then UseContainerItem(0, 2); end
Hybrid Assist: (courtesy Graven)
/script ClearTarget();
/assist Character
---
Description: Clears your current target and targets the same target as the character you have inputed above.
Example:
/script ClearTarget();
/assist John
Self-bandage: (courtesy Napili)
/script SpellStopCasting();
/s Bandaging, don't heal me!
/target [your characters name]
/script UseContainerItem (X1, X2);
---
Description: Stops whatever you are doing, announces that you are bandaging yourself and promptly bandages you.
Note: X1 represents the bag number, from right to left; 0-4. X2 represents the space number inside the bag (X1), from left to right.
Example:
/script SpellStopCasting();
/s Bandaging, don't heal me!
/target Joe
/script UseContainerItem (0, 1);
Shut up: (courtesy Kikyo)
/say No, I don't have time to make you free stacks of water, unless you want to pay me XG per stack.
/script CancelTrade()
---
Description: You simply say the above and than automaticly cancel the trade.
Example:
/say No, I don't have time to make you free stacks of water, unless you want to pay me 5G per stack.
/script CancelTrade()
Detect Clearcasting: (courtesy Creo)
/script local q; local t;for i=0,15,1 do t=GetPlayerBuffTexture(i); if (t and string.find(t, "ManaBurn")) then q=1; break; end; end; if(q ~= nil) then CastSpellByName("Arcane Missiles(Rank X)") else CastSpellByName("[Spell you use often](Rank X)"); end;
---
Description: Use as a normal spell key-binding, except if you gain Clearcasting before you cast it it will cast Arcane Missles instead.
Example:
/script local q; local t;for i=0,15,1 do t=GetPlayerBuffTexture(i); if (t and string.find(t, "ManaBurn")) then q=1; break; end; end; if(q ~= nil) then CastSpellByName("Arcane Missiles(Rank 7)") else CastSpellByName("Scorch(Rank 7)"); end;
My Sheep Macro....much like the one the macro dude above posted but with the all important BAAA!

(courtesy of Frenzi)
/script if UnitCanAttack("player","target") then SendChatMessage("Sheeping Lvl "..UnitLevel("target").." "..UnitName("target").."......BAAA!","raid") CastSpellByName("Polymorph(Rank 4)"); end
Change the raid for say/yell/party/guild and that is where your message will appear....guild is fun
