WoW:API CastPetAction: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
(upgraded deprecated template)
Line 1: Line 1:
{{wowapi}}
  <center>'''CastPetAction''' </center>
  <center>'''CastPetAction''' </center>


Line 33: Line 34:


: Cast the corresponding pet skill. Requires a button press.
: Cast the corresponding pet skill. Requires a button press.
----
{{WoW API}}

Revision as of 17:27, 6 January 2007

WoW API < CastPetAction

CastPetAction

Cast the corresponding pet skill.

CastPetAction(index);

Arguments
(index)
index
Number - The index of the pet skill for query.

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.