WoW:Item equipping: Difference between revisions

m
Move page script moved page Item equipping to WoW:Item equipping without leaving a redirect
m (Move page script moved page Item equipping to WoW:Item equipping without leaving a redirect)
 
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:


Note that the need for macro juggling to switch equipment is all but gone with the advent of AddOns such as
Note that the need for macro juggling to switch equipment is all but gone with the advent of AddOns such as
[http://www.curse-gaming.com/en/wow/addons-2045-1-itemrack.html ItemRack] or [http://wow.curse-gaming.com/en/files/details/4784/outfitter/ Outfitter]. These addons can themselves be controlled with macros if you like :-)
ItemRack or Outfitter. These addons can themselves be controlled with macros if you like :-)<!--[http://www.curse-gaming.com/en/wow/addons-2045-1-itemrack.html ItemRack] or [http://wow.curse-gaming.com/en/files/details/4784/outfitter/ Outfitter]. These addons can themselves be controlled with macros if you like :-)-->


== Basics ==
== Basics ==
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(16); if ( CursorHasItem() ) then PickupContainerItem(mainhandBag, mainhandBagSlot); end PickupContainerItem(offhandBag, offhandBagSlot); PickupInventoryItem(17); PickupContainerItem(offhandBag, offhandBagSlot); end
</code>
</code>


Anonymous user