WoW:API CastPetAction

From AddOn Studio
Revision as of 07:32, 25 April 2005 by WoWWiki>Treolorn
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
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

Description
Cast the corresponding pet skill.

Template:WoW API