Love em.
Thanks, Blizz.
Multicraft procs and Resourcefulness procs when you’re doing patron orders. Woo doggie.
I don’t think they award anything to the player on patron orders.
I’ve made a decent amount of gold on resourcefulness procs from patron orders. If you have No mats, No make addon it’ll swap your tool from your multicraft to your resourcefulness tool automatically. Then go bananas stealing from Mr patron.
Thank you.
What is a macro to swap out crafting tools?
The way the no mats no make addon swaps things is by determining the slot in your bag where the tool is located. Then equips it using
C_Container.PickupContainerItem(container_index, slot_index) where the container_index is the bag # and the slot index is the slot where the tool is. It then activates that item using the wow API command PickupInventoryItem(slotID)
Your bags are numbered 0 to 4. 0 being your backpack. The slots are labeled starting at 1. The left top slot is 1, the slot to the right of this is 2, etc.
The slotID is 20 for your main tool if it is your first profession. The slotID is 23 if it is your second profession. (See your profession page by pressing ‘K’. The first one is on the bottom)
So if you had your profession tool in your backpack in slot 12 (3rd row, 4th column) and you want to swap tools in your second profession the macro would be:
/run C_Container.PickupContainerItem(0,12);PickupInventoryItem(23); C_Timer.After(0.2, function() ClearCursor() end)
This means “pick up the item in the backpack at slot 12, equip it in the first profession tool slot, then drop the item that you get back (the original tool) in slot 12”
Or get the add on No mats, no make. Little drop-down menu where the tool is, you put your other tools in it and let it do the work.
Thank you!
Credit to Teishoku for introducing me to that little gem of an addon, motivated me to get a number of additional tools made for each crafters. Cept the crafting speed one… That one is just silly.