WoW:API CastPetAction: Difference between revisions
Jump to navigation
Jump to search
CastPetAction
No edit summary |
m (Move page script moved page API CastPetAction to API CastPetAction without leaving a redirect) |
||
(5 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
{{wowapi}} | |||
<center>'''CastPetAction''' </center> | <center>'''CastPetAction''' </center> | ||
Cast the corresponding pet skill. | Cast the corresponding pet skill. | ||
CastPetAction(index); | CastPetAction(index, [unit]); | ||
---- | ---- | ||
Line 10: | Line 11: | ||
: (index) | : (index) | ||
:; index : Number - The index of the pet skill for query. | :; index : Number - The index of the pet skill for query. | ||
: (unit) | |||
:; unit : [[UnitId]] - Optional UnitId | |||
---- | ---- | ||
Line 18: | Line 22: | ||
---- | ---- | ||
;''Example'' | ;''Example'' | ||
Cast by specified action name | |||
for i=1, NUM_PET_ACTION_SLOTS, 1 do | for i=1, NUM_PET_ACTION_SLOTS, 1 do | ||
Line 32: | Line 36: | ||
;''Description'' | ;''Description'' | ||
: Cast the corresponding pet skill. | : Cast the corresponding pet skill. Requires a button press. | ||
Latest revision as of 04:45, 15 August 2023
← WoW API < CastPetAction
Cast the corresponding pet skill.
CastPetAction(index, [unit]);
- Arguments
- (index)
- index
- Number - The index of the pet skill for query.
- (unit)
- unit
- UnitId - Optional UnitId
- Returns
- nil
- Example
Cast by specified action name
for i=1, NUM_PET_ACTION_SLOTS, 1 do local name, subtext, texture, isToken, isActive, autoCastAllowed, autoCastEnabled = GetPetActionInfo(i); if ( name == "Sacrifice" ) then CastPetAction(i); end end
Please notice that this exemple will only works if the sacrifice skill is named "Sacrifice" in the client locale.
- Description
- Cast the corresponding pet skill. Requires a button press.