wolfstill.blogg.se

How to do a disenchant search in tsm 4
How to do a disenchant search in tsm 4







how to do a disenchant search in tsm 4

With a macro, you can make one button that will only work on the items you've specified. It's error prone (ever disenchanted your offset?) and clunky. Without a macro, you need to hit the ability, find the item in your bag, and click on it. That said, the default interface for these abilities is rather clunky. Some things can't be completely automated, especially things such as milling, prospecting, and disenchanting that are designed to take time. It will at least ask you before equipping it, of course. Also, if it's bind on equip and you don't want to bind it, you should be extra careful not to press this macro away from a mailbox. Be careful, though, as it will click on everything in your bag that matches the quality, even if it's soulbound. This macro is useful if you're using an addon to buy items that can be disenchanted for a profit. Leave it at 2 to mail greens, change it to 3 for blue quality items, and change it to 4 for epic. That "quality=2" is what determines what gets clicked on. run for bag=0,4 do for slot=1,GetContainerNumSlots(bag) do local texture,itemCount,locked,quality=GetContainerItemInfo(bag,slot) if (quality=2) then UseContainerItem(bag,slot) end end end Here is a macro that will right-click based on item quality: If you tell it to mail all your "Obsidium," it will also match a lot of green gear you may have in your bags. Be careful with this type of matching, though. If you want, you can just say "Ore" if you want to mail all your ore. It's not going to work if you type "Elementium ore" because it's case sensitive. run for bag=0,4 do for slot=1,GetContainerNumSlots(bag) do local item=GetContainerItemLink(bag,slot) if item and item:find("Elementium Ore") then UseContainerItem(bag,slot) end end end It will put 12 items into the mail and then warn you that you can't attach more than 12 items per mail for each item in your bag. This macro will right click everything matching the name "Elementium Ore." Simply open your mail, type the name into it (and a subject, if you want), and then click this macro. There are a few things I find myself mailing a lot, and sometimes I want to mail everything of a particular quality, and sometimes I want to do it by name. Also, it won't help you if you're looking to do a one-time mass mail. While TSM can be set up to auto-mail items to alts based on groups (which is handy if you don't list what you make on the character that makes it), it can be intimidating to set up. Mailing between characters can be tedious if you have to right-click each time. Some items are sold in stacks, but this will specify a precise number (just like shift-clicking on the item). The second number is how many you want to buy. Be careful not to use the wrong index, or else you could find yourself stuck with a lot of the wrong item. The first number is the slot at the merchant 1 is the top left, 2 is the top right, 3 is just below 1, and it continues on that way. Those numbers indicate what you want to buy and how many of them.

how to do a disenchant search in tsm 4

Sometimes you just need to buy a lot of something from a vendor. If you have TSM (or some other addon that queues crafts and gives you an auto-buy button at the vendor), this won't be as useful. The next vendor macro you might find useful is a hotkeyable macro for buying vendor goods. What this is actually doing is right-clicking on every gray item in your bag, so don't do it in front of your bank unless you want to deposit all your grays into it. run for bag=0,4 do for slot=1,GetContainerNumSlots(bag) do local item=GetContainerItemLink(bag,slot) if item and item:find("ff9d9d9d") then UseContainerItem(bag,slot) end end end There are addons for this however, a macro takes no memory and doesn't need to be updated every patch. The first macro I'll share is one you can use to sell every grey item in your bag. Luckily, there's no cast time on vendor and mailbox interactions! If there's a cast time, for example, the best you can do with a macro is shorten multiple clicks into a single macro that can be clicked or hotkeyed. There are a bunch of tasks like this, including selling to vendors, buying from vendors, prospecting, posting for sale, and crafting.įirst, know that only some things can be really automated. Have you ever had to mail every single item in your bag to another of your characters? It's a lot of right-clicking. Check out Fox and Basil's reboot of Call To Auction, and email Basil with your questions, comments, or hate mail!Īs you start spending more time making money, you start to realize how much time you waste.

#HOW TO DO A DISENCHANT SEARCH IN TSM 4 HOW TO#

Every week, WoW Insider brings you Gold Capped, in which Basil " Euripides" Berntsen and Fox Van Allen aim to show you how to make money on the Auction House.









How to do a disenchant search in tsm 4