PutItemInBag

From Warcraft Wiki
Jump to navigation Jump to search
Flavors
Links
Info
Added in 1.0.0 / 1.13.2

Places the item on the cursor into the specified bag.

hadItem = PutItemInBag(inventoryID)

Arguments

inventoryID
number? : InventorySlotId - Values from CONTAINER_BAG_OFFSET + 1 to CONTAINER_BAG_OFFSET + NUM_TOTAL_EQUIPPED_BAG_SLOTS correspond to the player's bag slots, right-to-left from the first bag after the backpack.

Returns

hadItem
boolean? - True if the cursor had a item.

Details

  • Puts the item on the cursor into the specified bag on the main bar, if it's a bag. Otherwise, attempts to place the item inside the bag in that slot. Note that to place an item in the backpack, you must use PutItemInBackpack.

Example

The following put the item on the cursor (if it's not a bag) into the first bag (not including backpack) starting from the right.

PutItemInBag(CONTAINER_BAG_OFFSET + 1)