WoW API: GetSpecializationInfoByID

Revision as of 22:40, 9 October 2012 by WoWWiki>DrakeDT (Created page with "{{wowapi}} Returns information about the player's specializations. local id, name, description, icon, background, role, class = GetSpecializationInfoByID(specID) == Argument...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

WoW API < GetSpecializationInfoByID

Returns information about the player's specializations.

local id, name, description, icon, background, role, class = GetSpecializationInfoByID(specID)

Arguments

specID
Number - The id from GetSpecializationInfo() ; Listed at Specialization_IDs

Returns

id
Number - specialization ID.
name
String - specialization name, e.g. "Balance".
description
String - description of the specialization, e.g. "Can take on the form of a powerful Moonkin, balancing the power of Arcane and Nature magic to destroy enemies at a distance."
icon
String - Texture path to this specialization's icon.
background
String - Background texture name for this talent tree; prepend "Interface\TALENTFRAME\" to this value for a valid texture path.
role
String - This specialization's intended role in a party, one of "DAMAGER", "TANK", "HEALER".
class
String - This specialization's class, e.g. "Warrior".

Details

Patch history

Template:Mists-inline <span style="" title="Patch 5.0.4">Patch 5.0.4</span> (patch date::28-August-2012): Added to API

See also