Method Global:IsInventoryPos [-] [+]

Returns true if the bag and slot is a valid inventory position, otherwise false.

Some commonly used combinations:

Bag 255 (common character inventory)

  • Slots 0-18: equipment
  • Slots 19-22: bag slots
  • Slots 23-38: backpack
  • Slots 39-66: bank main slots
  • Slots 67-74: bank bag slots
  • Slots 86-117: keyring

Bags 19-22 (equipped bags)

  • Slots 0-35

Bags 67-74 (bank bags)

  • Slots 0-35

Synopsis

isInventoryPos = IsInventoryPos( bag, slot )

Arguments

number bag

The bag the Item is in, you can get this with Item:GetBagSlot.

Valid numbers: integers from 0 to 255.

number slot

The slot the Item is in within the bag, you can get this with Item:GetSlot.

Valid numbers: integers from 0 to 255.

Returns

boolean isInventoryPos
See method description.