View Single Post
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, 725 views)
  Reply With Quote