WoW:API GetInventoryItemID: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Created page with '{{wowapi}} Returns the item id of the item in the specified inventory slot itemId = GetInventoryItemID(invSlot); == Arguments == ; invSlot : Number (InventorySlotId) - inde…')
 
No edit summary
Line 1: Line 1:
{{wowapi}}
{{wowapi}}
Returns the item id of the item in the specified inventory slot
Returns the item id of the item in the specified inventory slot
  itemId = GetInventoryItemID(invSlot);
  itemId = GetInventoryItemID("unit", invSlot);


== Arguments ==
== Arguments ==
; invSlot : Number ([[InventorySlotId]]) - index of the inventory slot to query.
("unit", slotId)
 
;unit : String - The [[API TYPE UnitId|UnitId]] of the unit whose inventory is to be queried.
;invSlot : Number ([[InventorySlotId]]) - index of the inventory slot to query.


== Returns ==
== Returns ==
; itemId: Number - item id of the item in the inventory slot; nil if there is no item.
; itemId: Number - item id of the item in the inventory slot; nil if there is no item.

Revision as of 13:42, 27 June 2010

WoW API < GetInventoryItemID

Returns the item id of the item in the specified inventory slot

itemId = GetInventoryItemID("unit", invSlot);

Arguments

("unit", slotId)

unit
String - The UnitId of the unit whose inventory is to be queried.
invSlot
Number (InventorySlotId) - index of the inventory slot to query.

Returns

itemId
Number - item id of the item in the inventory slot; nil if there is no item.