Vic
BattleForums Addict
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
Now to understand how items in macros work as in where the item is etc etc its like this
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
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
im sure you can edit this to your needs
i might do more on this later but i gotta jet :-/
hope this helps :grunt
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.");
Code:
/script PickupContainerItem(bag, slot);
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
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
i might do more on this later but i gotta jet :-/
hope this helps :grunt