Wowpedia

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

READ MORE

Wowpedia
Register
No edit summary
No edit summary
Line 16: Line 16:
 
:;start : Numeric - The start time of the cooldown period, or 0 if there is no cooldown (or no item in the slot)
 
:;start : Numeric - The start time of the cooldown period, or 0 if there is no cooldown (or no item in the slot)
 
:;duration : Numeric - The duration of the cooldown period (NOT the remaining time). 0 if the item has no use/cooldown or the slot is empty.
 
:;duration : Numeric - The duration of the cooldown period (NOT the remaining time). 0 if the item has no use/cooldown or the slot is empty.
:;enable : Numeric - Return 1 or 0. 1 if the trinket is capable of having a cooldown, 0 if not.
+
:;enable : Numeric - Returns 1 or 0. 1 if the inventory item is capable of having a cooldown, 0 if not.
 
----
 
----
 
__NOTOC__
 
__NOTOC__

Revision as of 22:45, 10 February 2006

GetInventoryItemCooldown - Documentation by Flickering

Get cooldown information for an inventory item.

start, duration, enable = GetInventoryItemCooldown("unit", slotId)

Parameters

Arguments

("unit", slotId)
unit
String - The UnitId of the unit whose inventory is to be queried.
slotId
Numeric - The inventory slot to be queried, obtained via GetInventorySlotInfo.

Returns

start, duration, enable
start
Numeric - The start time of the cooldown period, or 0 if there is no cooldown (or no item in the slot)
duration
Numeric - The duration of the cooldown period (NOT the remaining time). 0 if the item has no use/cooldown or the slot is empty.
enable
Numeric - Returns 1 or 0. 1 if the inventory item is capable of having a cooldown, 0 if not.

Template:WoW API