WoW:API GetPetActionInfo: Difference between revisions
Jump to navigation
Jump to search
(Added info based on Sarf's post on cosmosui forum) |
m (Move page script moved page API GetPetActionInfo to API GetPetActionInfo without leaving a redirect) |
||
(5 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
{{wowapi}} __NOTOC__ | |||
Returns information on the specified pet action. | 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 (<small>guess</small>) | |||
:;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. | |||
:;name : The name of the action | |||
:;subtext : | |||
:;texture : | |||
:;isToken : | |||
:;isActive : Returns true if the ability is currently active | |||
:;autoCastAllowed : Returns true if this ability can use autocast. | |||
:;autoCastEnabled : 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 |
Latest revision as of 04:46, 15 August 2023
Returns information on the specified pet action.
name, subtext, texture, isToken, isActive, autoCastAllowed, autoCastEnabled = GetPetActionInfo(index);
Parameters[edit]
Arguments[edit]
- index
- Number - The index of the pet action button you want to query.
Returns[edit]
- 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[edit]
Information based on a post from Sarf plus some guesswork, so may not be 100% accurate