Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
(add documentation for IsEquippableItem)
 
KethoBot (talk | contribs)
m (Strip semicolons and double quotes)
Tag: WoW API docs
Line 1: Line 1:
 
{{wowapi}}__NOTOC__
 
{{wowapi}}__NOTOC__
 
Returns 1 if item is an equip-able one at all, your character notwithstanding, or nil if not.
 
Returns 1 if item is an equip-able one at all, your character notwithstanding, or nil if not.
result = IsEquippableItem(itemId or "itemName" or "itemLink")
+
result = IsEquippableItem(itemId or itemName or itemLink)
   
 
== Parameters ==
 
== Parameters ==

Revision as of 02:43, 6 February 2022

Returns 1 if item is an equip-able one at all, your character notwithstanding, or nil if not.

result = IsEquippableItem(itemId or itemName or itemLink)

Parameters

Arguments

(itemId or "itemName" or "itemLink")
itemId
Integer - The numeric ID of the item. ie. 12345
itemName
String - The Name of the Item, e.g. "Heavy Silk Bandage"
itemLink
String - The itemLink, when Shift-Clicking items.

Returns

result
1 if equip-able, nil otherwise.

Example

On a Druid:

/dump IsEquippableItem("[Heroes' Dreadnaught Helmet]")
1
/dump IsEquippableItem("[Heroes' Dreamwalker Headguard]")
1
/dump IsEquippableItem("[Mr. Pinchy]")
nil