WoW:API CastShapeshiftForm: Difference between revisions

2.0.1 protection note
mNo edit summary
(2.0.1 protection note)
Line 1: Line 1:
__NOTOC__
{{wowapi}}__NOTOC__
<center>'''Submitted by [[/User:Naliya|Naliya]]'''</center>
{{protectedapi|2.0.1|For alternatives, try [[API_SecureTemplates|Secure Template]] or the new [[Conditional slash commands#/cast|/cast]].}}
 
Casts Shapeshift on yourself. This is class dependant - not all classes have special abilities.
Casts Shapeshift on yourself. This is class dependant - not all classes have special abilities.


Line 56: Line 55:
== Example ==
== Example ==
This Example shows how to return to your human form our of any other form.
This Example shows how to return to your human form our of any other form.
   for i=1, GetNumShapeshiftForms() do
   for i=1, GetNumShapeshiftForms() do
     _, name, active = GetShapeshiftFormInfo(i);
     _, name, active = GetShapeshiftFormInfo(i);
Line 66: Line 63:
     end
     end
   end
   end
----
{{WoW API}}