Thread Tools Display Modes
10/27/14, 12:56 PM   #1
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Dump of ability names

In the attachement is a dump of ability names in all 3 supported languages. I'm not sure if it is complete, but there is 31913 abilityIds on the list. It was generated on the PTS server (v1.5.1) using this simple loop:

Lua Code:
  1. local lang = GetCVar("language.2")
  2. local sv.list = sv.list or {} --sv is reference to saved variables table
  3.  
  4. for abilityId = 1, 70000 do
  5.    if DoesAbilityExist(abilityId) then
  6.       sv.list[abilityId] = sv.list[abilityId] or {}
  7.       sv.list[abilityId][lang] = GetAbilityName(abilityId)
  8.    end
  9. end
Attached Files
File Type: zip AbilityList.zip (597.6 KB, 716 views)
  Reply With Quote
10/27/14, 01:25 PM   #2
Tonyleila
 
Tonyleila's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 288
very nice finaly a list with all spells in it in all languages!
Now it only needs all timers in it to make it work with cooldown/buff addons
  Reply With Quote
10/27/14, 01:31 PM   #3
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Originally Posted by Tonyleila View Post
very nice finaly a list with all spells in it in all languages!
Now it only needs all timers in it to make it work with cooldown/buff addons
In the list are abilityIds, so it is easy to get timers:

* GetAbilityCastInfo(*integer* _abilityId_)
** _Returns:_ *bool* _channeled_, *integer* _castTime_, *integer* _channelTime_

* GetAbilityDuration(*integer* _abilityId_)
** _Returns:_ *integer* _duration_
  Reply With Quote

ESOUI » Developer Discussions » Translation Help » Dump of ability names

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off