Wowpedia

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

READ MORE

Wowpedia
Register
Advertisement

Returns true if an item is equipable by the player.

result = IsEquippableItem(itemId or itemName or itemLink)

Parameters[]

Arguments[]

(itemId or "itemName" or "itemLink")
itemId
number - 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
Advertisement