WoW:Item equipping: Difference between revisions
Jump to navigation
Jump to search
m
→Simple Swap Without Itemslots
m (Fixed: Forgotten "I" and Blizzard capitalization) |
|||
| Line 109: | Line 109: | ||
<code> | <code> | ||
/script if ( not CursorHasItem() ) then PickupInventoryItem(17); if ( CursorHasItem() ) then PickupContainerItem(offhandBag, offhandBagSlot); end PickupContainerItem(mainhandBag, mainhandBagSlot); PickupInventoryItem(16); PickupContainerItem(mainhandBag, mainhandBagSlot); end | /script if ( not CursorHasItem() ) then PickupInventoryItem(17); if ( CursorHasItem() ) then PickupContainerItem(offhandBag, offhandBagSlot); end PickupContainerItem(mainhandBag, mainhandBagSlot); PickupInventoryItem(16); PickupContainerItem(mainhandBag, mainhandBagSlot); end | ||
</code> | </code> | ||
| Line 165: | Line 161: | ||
/saveset <Number> | /saveset <Number> | ||
/loadset <Number> | /loadset <Number> | ||
== Simple Swap Without Itemslots== | |||
Halow's Item Switch (1h+Shield to 2h) | |||
I don't know about you guys but I cant stand item slot specific macros, to complicated for me and a waste of macro space. So I made this little gem... | |||
<code> | |||
/equip [nomodifier] <1H Item Name> | |||
/equip [nomodifier] <OH Item Name> | |||
/equip [modifier:shift] <2H Item Name> | |||
</code> | |||
Note** make sure you don't put the <> around your weapons. | |||
This macro will equip your 1handed weapon and your shield/offhand weapon when you click it, and when you click it while holding down shift it will equip your 2handed weapon. This should also work for dual wield to 2hander though I haven't tested it. | |||
[[Category:Macros]] | [[Category:Macros]] | ||