WoW:API IsUsableAction: Difference between revisions
Jump to navigation
Jump to search
IsUsableAction
m (Formatting) |
No edit summary |
||
| Line 21: | Line 21: | ||
__NOTOC__ | __NOTOC__ | ||
{{Template:WoW API}} | {{Template:WoW API}} | ||
Revision as of 18:44, 3 January 2006
Determine if an action can be used.
isUsable, notEnoughMana = IsUsableAction(slot)
Parameters
Arguments
- (slot)
- slot
- Integer - The action slot to retrieve data for.
Returns
- isUsable, notEnoughMana
- isUsable
- Flag - Returns 1 if the action is valid for use at present (Does NOT include cooldown or range tests), nil otherwise.
- notEnoughMana
- Flag - Returns 1 if the reason for the action not being usable is because there is not enough mana/rage/energy, nil otherwise.
Example
local isUsable, notEnoughMana = IsUsableAction(1);