WoW API: PickupItem
← WoW API < PickupItem
Place the item on the cursor.
PickupItem(itemID or "itemString" or "itemName" or "itemLink")
ParametersEdit
ArgumentsEdit
- (itemId or "itemString" or "itemName" or "itemLink")
- itemId
- Integer - The numeric ID of the item. ie. 12345
- itemString
- String - The full item ID in string format, e.g. "item:12345:0:0:0:0:0:0:0".
- Also supports partial itemStrings, by filling up any missing ":x" value with ":0", e.g. "item:12345:0:0:0"
- itemName
- String - The Name of the Item, ex: "Hearthstone"
- The item must have been equiped, in your bags or in your bank once in this session for this to work.
ExamplesEdit
PickupItem(6948) PickupItem("item:6948") PickupItem("Hearthstone") PickupItem(GetContainerItemLink(0, 1))
ResultEdit
- Picks up the Hearthstone. 4th one picks up the item in backpack slot 1
Common usageEdit
PickupItem(link)