Close
Showing results 1 to 9 of 9
  1. #1

    Default Time Click Saving Macros?

    Been looking for this forever. Great for togging tank/dps Are there any other obsure macros that have made your life easier?
    /equipset <setname>
    example
    /equipset dps
    /equipset tank

    used to hearth or get out of a Find Dungeon Instance. you can always cancel the hearth casting.
    /use hearthstone
    /run LFGTeleport(true)

    Can you share one of your most valued utilities type macros?
    Just remember what ol' Jack Burton does when the earth quakes, and the poison arrows fall from the sky, and the pillars of Heaven shake. Yeah, Jack Burton just looks that big ol' storm right square in the eye and he says, "Give me your best shot, pal. I can take it"

  2. #2
    Member
    Join Date
    Sep 2008
    Location
    Calgary, AB and Vancouver, BC
    Posts
    7638
    Blog Entries
    2

    Default

    I combine Equipset with Usetalents (1 or 2).
    /Equipset pve
    /Usetalents 1

    /Equipset pvp
    /Usetalents 2

    The dungeon exit thing, pretty much mouse broadcast and click the icon on the mini-map.
    But macro could be good, especially for those without a good mouse broadcasting option.



    For PvP, I love this one:

    /script AcceptBattlefieldPort(1,1)
    /script LeaveBattlefield()

    When not in a BG, it accepts the BG invite.
    When in a BG, it will leave the BG.
    EverQuest I: Bard / Enchanter / Druid / Wizard / 2x Magician.
    Diablo III: 4x Crusader & 4x Wizard.

    My Guide to IS Boxer http://www.dual-boxing.com/showthread.php?t=26231 (somewhat dated).
    Streaming in 1080p HD: www.twitch.tv/ualaa
    Twitter: @Ualaa


  3. #3

    Default

    Quote Originally Posted by Ualaa View Post
    I
    /Equipset pve
    /Usetalents 1

    /Equipset pvp
    /Usetalents 2
    ive been looking for this forever! thanks

    Let them hate, as long as they fear.

  4. #4

    Default

    I made my own gear sets back in the day.
    /use Sword
    /use Heavy Leg
    /use Large Shie
    I used the shortest names I could so it would fit into one macro. Then I learnd about /click, so I just made 2 macros. I kept the gear in order, so if I changed out a shoulder or hands, I knew exactly where to look for it.
    Then I moved on to Outfitter, and have never looked back. I LOVE it, so much. Yeah, there is a built in version, but I like that you can push the button (either macro /outfitter wear Healing, /outfitter wear Tanking or it has a button bar) and it will change when it can if you are in combat. It will change if you put conditions on it, primary spec. So if you change to tanking spec, you don't have to remember to change your gear, it does it for you. BGs or PVP flagged. It has crap tons of other condtions that it can check for (riding, swimming, fishing, etc), but I just use specs and BG/PVP. I love not forgetting to change when I do WG. I love not trying to tank in my healing gear.

  5. #5

    Default

    Quote Originally Posted by Ualaa View Post
    I combine Equipset with Usetalents (1 or 2).
    /Equipset pve
    /Usetalents 1

    /Equipset pvp
    /Usetalents 2
    .
    Are these commands built into WoW, or do they rely on an addon like Outfitter? (I'm at work, so I can't test)

  6. #6

    Default

    That's built into WoW, I only use the default Equipment Manager.

    My macros look pretty much the same, i.e. :

    /equipset Dungeon
    /usetalents [nospec:2] 2

  7. #7
    Member luxlunae's Avatar
    Join Date
    Aug 2008
    Location
    Bay Area, CA
    Posts
    1431
    Blog Entries
    37

    Default

    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())

  8. #8

    Default

    • 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

  9. #9

    Default

    is there a generic chose first yes or first option script? i cant find anything like it in http://www.wowwiki.com/World_of_Warcraft_API

    im looking for a script to say yes to BOP and when IWTing with Jeeves i want to choose the second selection. Jamba always wants to go into the Jeeves bank by default.

    I found a nice addon called Looter that only loots stuff you specify. does anyone know of a more dependable addon that does the same? This addon looked solid and most up to date but it guess im not holding it right or something. hehehe
    http://wow.curse.com/downloads/wow-a.../evlooter.aspx
    Last edited by JackBurton : 01-15-2011 at 10:11 PM
    Just remember what ol' Jack Burton does when the earth quakes, and the poison arrows fall from the sky, and the pillars of Heaven shake. Yeah, Jack Burton just looks that big ol' storm right square in the eye and he says, "Give me your best shot, pal. I can take it"

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •