Thread Tools Display Modes
05/05/14, 04:47 PM   #1
stjobe
 
stjobe's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 60
Translation and texture help needed

I'm working on an addon to help sorcerers remember to summon their minions - or notice that they died - and I could use some translation help:

Edit: After re-thinking the logic after reading Garkin's post, I do not require any translations. The addon will be available shortly.

I'd love it if someone could check the French and German clients for the names for these abilities:
Unstable Familiar
Volatile Familiar
Unstable Clannfear
Summon Winged Twilight
Summon Restoring Twilight
Summon Twilight Matriarch

Alternatively, does anyone know if it's possible to get the translated names from the English names?

Also, if someone knows the icon file for these, I'd much appreciate to know that too:
Unstable Familiar
Unstable Clannfear
Summon Winged Twilight
Summon Restoring Twilight

(it should be something like /esoui/art/icons/ability_sorcerer_somethingsomething.dds)


Thank you for your help!

Last edited by stjobe : 05/06/14 at 04:18 PM.
  Reply With Quote
05/05/14, 05:06 PM   #2
Tonyleila
 
Tonyleila's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 288
I don't have a mage yet. Hope someone else have?
This thread can be moved to the new " Translation Help " forum.
http://www.esoui.com/forums/forumdisplay.php?f=186
  Reply With Quote
05/06/14, 08:49 AM   #3
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
German:
Unstable Familiar = Instabiler Begleiter
Volatile Familiar = Explosiver Begleiter
Unstable Clannfear = Instabiler Clannbann
Summon Winged Twilight = Zwielichtschwinge beschwören
Summon Restoring Twilight = Zwielichtwahrerin beschwören
Summon Twilight Matriarch = Zwielichtmatriarchin beschwörern

But I think you can get all information you need using this function:
Lua Code:
  1. local skillType = SKILL_TYPE_CLASS -- [url]http://wiki.esoui.com/Globals#SkillType[/url]
  2.  
  3. --If you open skills window, everything is counted from the top, so:
  4.  
  5. --skillIndex = 1 -- Dark Magic
  6. --skillIndex = 2 -- Daedric Summoning
  7. --skillIndex = 3 -- Storm Calling
  8. local skillIndex = 2
  9.  
  10. --as I said all abilities are counted from the top, so:
  11. -- abilityIndex = 1 -- ultimate: Summon Storm Atronach or morphed to Greater Storm Atronach / Summon Charged Atronach
  12. -- abilityIndex = 2 -- Unstable Familiar (or Unstable Clannfear / Volatile Familiar)
  13. -- abilityIndex = 3 -- Daedric Curse (or Explosive Curse / Velocious Curse )
  14. -- abilityIndex = 4 -- Summon Winged Twilight (or Summon Restoring Twilight / Summon Twilight Matriarch)  
  15. -- abilityIndex = 5 -- Bound Armor (or Bound Aegis / Bound Armaments)
  16. -- abilityIndex = 6 -- Conjured Ward (or Empowered Ward / Hardened Ward)  
  17. -- abilityIndex = 7 -- passive: Rebate  
  18. -- abilityIndex = 8 -- passive: Power Stone  
  19. -- abilityIndex = 9 -- passive: Daedric Protection  
  20. -- abilityIndex = 10 -- passive: Expert Summoner  
  21. local abilityIndex = 2
  22.  
  23. local name, icon, earnedRank, passive, ultimate, purchased, progressionIndex = GetSkillAbilityInfo(skillType, skillIndex, abilityIndex)
  24. d("name: " .. name .. ", icon: " .. icon )
  Reply With Quote
05/06/14, 09:14 AM   #4
stjobe
 
stjobe's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 60
Thank you Garkin, that was most helpful!

I might have to rethink the way my addon logic is structured, since there's really no need to check every summoning ability, just the ones the character has slotted - and then I can get the info I need from the functions you mentioned. Hmm... this bears thinking about

Anyway, thanks for both the information and the jolt out of my mindset
  Reply With Quote

ESOUI » Developer Discussions » Lua/XML Help » Translation and texture help needed


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