WoW:API IsEquippableItem: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(add documentation for IsEquippableItem)
 
m (Move page script moved page API IsEquippableItem to API IsEquippableItem without leaving a redirect)
 
(One intermediate revision by one other user not shown)
Line 15: Line 15:


== Example ==
== Example ==
On a Druid:


  /dump IsEquippableItem("{{loot|epic|Heroes' Dreadnaught Helmet}}")
  /dump IsEquippableItem("{{loot|epic|Heroes' Dreadnaught Helmet}}")

Latest revision as of 04:46, 15 August 2023

WoW API < IsEquippableItem

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[edit]

Arguments[edit]

(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[edit]

result
1 if equip-able, nil otherwise.

Example[edit]

/dump IsEquippableItem("Template:Loot")
1
/dump IsEquippableItem("Template:Loot")
1
/dump IsEquippableItem("Template:Loot")
nil