Subscribe via email

Enter your email address:

Delivered by FeedBurner

Tuesday, July 04, 2006

Simple Macros

Here i put a list of some simple macros i found while digging for it.

To use the macro, run World of Warcraft, and type /macro. This will bring up a new window with empty boxes. At the bottom, select "new" and you are promted to select a graphic icon and to name your macro. After that you get to a screen where you can type up to 254 characters. Simple highlight the macro from this guide, copy it (by pressing CTRL + C) and paste it (by pressing CTRL + V) into the text box in the game.

So, What can Macros NOT do? They can not:

  • Make you move
  • Cast more than one spell
  • Use wait commands.

Targeting
Macro: %t
Use: This will say the name of your target.
Example: You target the silver elite mob Broken Tooth and say "/g Hey, %t spawned.", it'll show up as "[Guild] Hey, Broken Tooth spawned."

Accept Quest
Macro: /script AcceptQuest()
Use: This will automatically accept any quest without waiting for it to scroll down in full.
Example: N/A

Magic/Skills
Macro: /cast Spell name()
Use: Cast a spell using a macro.
Example: /cast Fireball(Rank 3) or /cast Backstab(Rank 1)

Attacking
Macro: /script AttackTarget();
Use: Starts hacking away at an enemy, same effect as right click.
Example: N/A

Assist
Macro: /assist %t or /assist ****
Use: Using %t will assist your current target, and the second you replace the stars with the persons name, so all you have to do is press a button and you can always attack the same thing as someone else in your party. Same effect as pressing "F" button while having a party member targeted.
Example: You have a tank named Drizzt, and you want to attack only what he attack, "/assist Drizzt" will give you Drizzt's target.

Target Last Enemy
Macro: /script TargetLastEnemy();
Use: Targets last enemy you had.
Example: You're the back up healer and you're fighting something, you go and heal someone, and you press this macro to go right back to the mob you where fighting.

Enemy Infos

/script SendChatMessage("Level: " .. UnitLevel("target") , "party");
Use: Like %t, it list the target's level.

/script SendChatMessage("Class: " .. UnitClassification("target") , "party");
Use: Put's the target's class in your chat box.

/script SendChatMessage("Family: " .. UnitCreatureFamily("target") , "party");
Use: Put's the target's family in your chat box.

/script SendChatMessage("Race: " .. UnitRace("target") , "party");
Use: Put's the target's race in your chat box.


SHARE THIS ARTICLES

0 comments: