Useful Macros's

Vic

BattleForums Addict
Joined
May 30, 2003
Messages
881
Reaction score
0
Location
The Void.*
Some i made and some i found im just pulling these out of my client so i cant give credit to the ones i didnt make

Anyways i do NOT use cosmos cause i thinks its bullshit imo and dont ask so i use this macro alot

Code:
/script QUEST_DESCRIPTION_GRADIENT_CPS = nil
/script RegisterForSave("QUEST_DESCRIPTION_GRADIENT_CPS")
/script DEFAULT_CHAT_FRAME:AddMessage("[Blizzard GM]] Quest Text Speed is now Disabled.");
Now to understand how items in macros work as in where the item is etc etc its like this

Code:
/script PickupContainerItem(bag, slot);
bags go 1 - 4 slots are 1 - 18 (bag size pending)

Now this next macro is a pet feeding one just edit the bag and slots to your needs and always keep the food in the spot you set and you should be good

Code:
/script if (not PlayerFrame.inCombat) then if (not
GetContainerItemLink(bag, slot)) then OpenBag(bag); else CastSpellByName("Feed Pet"); PickupContainerItem(bag, slot); end end
see how easy it is?

This will do a check on the person you have targeted and check this if its a warrior/rouge it will cast blessing of might otherwise it will cast blession of wisdom just be sure to set the ranks right instead of haveing bow and bom on yout toolbar just use this :)

Code:
/script class = UnitClass("target"); if ( ( class == "Rogue" ) or ( class == "Warrior" ) ) then
   CastSpellByName("Blessing of Might(Rank 1)"); else CastSpellByName("Blessing of Wisdom(Rank 1)"); end
im sure you can edit this to your needs

i might do more on this later but i gotta jet :-/

hope this helps :grunt
 

SephirothX89

Member!
Joined
May 19, 2003
Messages
1,074
Reaction score
0
Location
Azeroth
Website
Visit site
For the rogues out there, theres a great weapon swapping macro. It requires cosmos I believe. So you can swap for a backstab, then swap back to a sword/mace or whatever you have in the main hand for better SS damage.

Actually, this isn't just for rogues, Warriors could use it to switch from a 2-hander to a 1-hander + shield, warlocks could go from staff to Sword and orb etc.

www.capnbry.net/wow

There's a good description in the ReadMe after you Dl it. Here's an example (my macro)

/WeaponSwap ("Widowmaker" , "Shortsword of Vengance" , "Shortsword of Vengance" , "Widowmaker");
 

Vic

BattleForums Addict
Joined
May 30, 2003
Messages
881
Reaction score
0
Location
The Void.*
eh my quest text is bugged now here is the fixed one

Code:
/script QUEST_DESCRIPTION_GRADIENT_CPS = 999999
/script RegisterForSave("QUEST_DESCRIPTION_GRADIENT_CPS")
/script DEFAULT_CHAT_FRAME:AddMessage("[Blizzard GM]] Quest Text Speed is now Disabled.");
 

New threads

Top