WoW:API PickupItem: Difference between revisions
Jump to navigation
Jump to search
m (New page: {{wowapi}}__NOTOC__ Place the item on the cursor. PickupItem(itemID or "itemString" or "itemName" or "itemLink") == Parameters == === Arguments === :(itemId or "itemString" or "item...) |
m (Move page script moved page API PickupItem to API PickupItem without leaving a redirect) |
(No difference)
|
Latest revision as of 04:47, 15 August 2023
← WoW API < PickupItem
Place the item on the cursor.
PickupItem(itemID or "itemString" or "itemName" or "itemLink")
Parameters[edit]
Arguments[edit]
- (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.
Examples[edit]
PickupItem(6948) PickupItem("item:6948") PickupItem("Hearthstone") PickupItem(GetContainerItemLink(0, 1))
Result[edit]
- Picks up the Hearthstone. 4th one picks up the item in backpack slot 1
Common usage[edit]
PickupItem(link)