WoW API: PickupItem

From AddOn Studio
Revision as of 17:27, 9 November 2008 by WoWWiki>Toadkiller (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...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

WoW API < PickupItem

Place the item on the cursor.

PickupItem(itemID or "itemString" or "itemName" or "itemLink") 

Parameters

Arguments

(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.
itemLink
String - The itemLink, when Shift-Clicking items.

Examples

PickupItem(6948)
PickupItem("item:6948")
PickupItem("Hearthstone")
PickupItem(GetContainerItemLink(0, 1))

Result

Picks up the Hearthstone. 4th one picks up the item in backpack slot 1

Common usage

PickupItem(link)