WoW API: GetSpellLink

From AddOn Studio
Revision as of 14:01, 13 April 2008 by WoWWiki>Ansman (Page created)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

WoW API < GetSpellLink

Get information about a spell.

link = GetSpellInfo(spellId)


Arguments

spellId
Integer - The global spell number, found on wowhead or through COMBAT_LOG_EVENT.


Returns

link
String - A link to the spell, can be outputed directly though AddMessage()

Details

Returns

Note that this does link does not contain any ranks, for instance if you request a link for fireball rank 10 it would look like: [Fireball]

If you wish to display rank use GetSpellInfo and output using the following code:

local name, rank = GetSpellInfo(SpellID);
DEFAULT_CHAT_FRAME:AddMessage("Spell: |Hspell:" .. SpellID .."|h|r|cff71d5ff[" .. name .. " " .. rank .. "]|r|h");