WoW:API ContainerIDToInventoryID: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
(upgraded deprecated template)
Line 1: Line 1:
{{wowapi}}
<center>'''ContainerIDToInventoryID''' ''-Documentation by [[user:Luke1410|Luke1410]]-''</center>
<center>'''ContainerIDToInventoryID''' ''-Documentation by [[user:Luke1410|Luke1410]]-''</center>
----
----
Line 27: Line 28:
:The player bags begin at container 1 and inventory 20.
:The player bags begin at container 1 and inventory 20.
:The bank bags begin at container 5 and inventory 68.
:The bank bags begin at container 5 and inventory 68.
----
{{WoW API}}

Revision as of 17:29, 6 January 2007

WoW API < ContainerIDToInventoryID

ContainerIDToInventoryID -Documentation by Luke1410-

Arguments
(bagID)
bagID
bagID - number of the bag (0-4) to get the inventoryID for

Returns
inventoryID
inventoryID - the bag's inventory ID used in functions like PutItemInBag(inventoryId) and GetInventoryItemLink("player",inventoryId)

Examples
local invID = ContainerIDToInventoryID(1)  
DEFAULT_CHAT_FRAME:AddMessage("Bag slot 1 is inventory slot "..invID)

Result
Bag slot 1 is inventory slot 20

Notes
The return of container IDs -2 (key ring), -1 (bank) and 0 (backpack) aren't actual Inventory slots usable by most Inventory functions.
The player bags begin at container 1 and inventory 20.
The bank bags begin at container 5 and inventory 68.