-
Member
I use two seperate acceptall macros (if I put them together on one button I'll teleport out every time I try to trade while in an instance! bad!)
/run AcceptResurrect();
/run StaticPopup_Hide("QUEST_ACCEPT");
/run ConfirmReadyCheck(1);
/run AcceptGroup();
/run AcceptQuest();
/run AcceptTrade();
/run RetrieveCorpse();
/run RepopMe();
/run ConfirmAcceptQuest();
releases when you die, trades, can accept rezzes and quests (although thats generally handled by jamba) and then for LFG
/click LFDRoleCheckPopupAcceptButton
/click LFDDungeonReadyDialogEnterDungeonButton
/run LFGTeleport(IsInLFGDungeon())
-
Member
- This is an ancient relic of an avoidance macro, but i still use it on my main tank to tell if I'm higher or lower than before (like if I swap out a piece of gear or proc holy shield on pally or use shield block on warrior) I don't know if the 102.4% still matters, but it is interesting to say "if I spend 3 hours farming elementium, that shield gives me 0.002% more avoidance!"
/script DEFAULT_CHAT_FRAME:AddMessage("Need 102.4 combined avoidance. Currently at:",0.8,0.8,1)
/script DEFAULT_CHAT_FRAME:AddMessage(GetDodgeChance()+Get BlockChance() + GetParryChance() +5+(GetCombatRatingBonus(CR_DEFENSE_SKILL) + 20)*0.04,1,0.5,0)
- The GTFO macro if you have a passenger mount:
/script EjectPassengerFromSeat (1);
/script EjectPassengerFromSeat (2);
- The Grey Items Bomb. It will sell or push into a trade window all of your grey items. Make sure you have a merchant window or trade window open though, or else you just right-clicked every piece of grey in your bags and will equip what's equippable.
/script for bag = 0,4,1 do for slot = 1, GetContainerNumSlots(bag), 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,"ff9d9d9d") then DEFAULT_CHAT_FRAME:AddMessage("Selling "..name); UseContainerItem(bag,slot) end; end; end
- ^ I've also attempted a green items version of this, for trading stuff to my enchanter or flooding their mailbox with disenchantables, but for some reason it's no longer working:
(BROKEN! DONT MINDLESSLY COPY PASTE THIS ONE)/script for bag = 0,4,1 do for slot = 1, GetContainerNumSlots(bag), 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,"ff00ff00") then DEFAULT_CHAT_FRAME:AddMessage("Selling "..name); UseContainerItem(bag,slot) end; end; end
Posting Rules
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Connect With Us