View Single Post
02-02-15, 04:12 PM   #6
TOM_RUS
A Warpwood Thunder Caller
AddOn Author - Click to view addons
Join Date: Sep 2008
Posts: 95
Originally Posted by Basil2 View Post
I need my addon to work with any language client. So I can't write GetSpellCooldown("Riptide") but
GetSpellCooldown(61295). However this is not informative at all.

The best IMHO solution is:
Code:
RiptideId = 61295
GetSpellCooldown(RiptideId)
So I am looking for a list like 'RiptideId = 61295' with all spells with their IDs. I guess somebody already did the job by exploring wowhead and preparing such table.

Could you please tell where is such table?
If your addon needs such table, you are doing something wrong. Spell ID should be enough for ALL cases. Also, what you gonna do with spells that have same name but different id?

Originally Posted by Basil2 View Post
So I can't write GetSpellCooldown("Riptide") but
GetSpellCooldown(61295). However this is not informative at all.
Put a comment...
  Reply With Quote