Returns whether an item can be equipped. Indicates whether an item is capable of being equipped on a character, not necessarily whether the player character is able to wear it.
See also Item functions.
Signature:
isEquippable
=
IsEquippableItem(itemID)
or
IsEquippableItem("itemName")
or
IsEquippableItem("itemLink")
Arguments:
itemID
- An item's ID (number
)itemName
- An item's name (string
)itemLink
- An item's hyperlink, or any string containing theitemString
portion of an item link (string
)
Returns:
isEquippable
- 1 if the item can be equipped, otherwise nil (1nil
)