WoW:API GetShapeshiftFormInfo: Difference between revisions
Jump to navigation
Jump to search
GetShapeshiftFormInfo -Documentation by Satsh-
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
Retrieves information about an available Shapeshiftform or Stance. | Retrieves information about an available Shapeshiftform or Stance. | ||
icon, name, active = GetShapeshiftFormInfo(index); | icon, name, active, castable = GetShapeshiftFormInfo(index); | ||
---- | ---- | ||
Line 18: | Line 18: | ||
:; name: Name of the ShapeshiftForm or Stance (optional) | :; name: Name of the ShapeshiftForm or Stance (optional) | ||
:; active: Returns 1 if this ShapeshiftForm/Stance is currently active, else 0 (optional) | :; active: Returns 1 if this ShapeshiftForm/Stance is currently active, else 0 (optional) | ||
:; castable: identifies if its castable. | |||
---- | ---- | ||
Line 24: | Line 25: | ||
icon, name = GetShapeshiftFormInfo(1); | icon, name = GetShapeshiftFormInfo(1); | ||
icon, name, active = GetShapeshiftFormInfo(1); | icon, name, active = GetShapeshiftFormInfo(1); | ||
icon, name, active, castable = GetShapeshiftFormInfo(1); | |||
---- | ---- | ||
{{Template:WoW API}} | {{Template:WoW API}} |
Revision as of 03:43, 25 May 2005
Retrieves information about an available Shapeshiftform or Stance.
icon, name, active, castable = GetShapeshiftFormInfo(index);
- Arguments
- (Number Index)
- type
- One of the following:
- index
- Index of ShapeshiftForm, counted from left to right from Iconpositions in the Shapeshift/Stance bar. May not be greater then GetNumShapeshiftForms();
- Returns
- icon
- Position and name of the icon used for the button
- name
- Name of the ShapeshiftForm or Stance (optional)
- active
- Returns 1 if this ShapeshiftForm/Stance is currently active, else 0 (optional)
- castable
- identifies if its castable.
- Example
icon = GetShapeshiftFormInfo(1); icon, name = GetShapeshiftFormInfo(1); icon, name, active = GetShapeshiftFormInfo(1); icon, name, active, castable = GetShapeshiftFormInfo(1);