WoW API: GetPetActionInfo

From AddOn Studio
Revision as of 06:20, 10 February 2007 by WoWWiki>VoidvectorBot (Remove singatures made using ~ in main namespace)
Jump to navigation Jump to search

WoW API < GetPetActionInfo

Returns information on the specified pet action.

name, subtext, texture, isToken, isActive, autoCastAllowed, autoCastEnabled = GetPetActionInfo(index);

Parameters

Arguments

index
Number - The index of the pet action button you want to query.

Returns

name
String - The name of the action (or its global ID if isToken is true).
subtext
String - The subtext for the action's tooltip.
texture
String - The name (or its global ID, if isToken is true) of the texture for the action.
isToken
Boolean - Indicates if the action is a reference to a global action, or not (guess)
isActive
Boolean - Returns true if the ability is currently active.
autoCastAllowed
Boolean - Returns true if this ability can use autocast.
autoCastEnabled
Boolean - Returns true if autocast is currently enabled for this ability.

Notes

Information based on a post from Sarf plus some guesswork, so may not be 100% accurate