View Single Post
01/16/20, 07:12 AM   #1
Keldor
 
Keldor's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2015
Posts: 101
Question Get Male/Female names of skill lines

Hello everybody,

I was just wondering that there is no method to query the different skill lines names for male and female characters. In German and French we have a different name for some skill lines per gender.

Heres an example of the Nord class skill line in german:
Female => Tochter der Himmel
Male => Sohn der Himmel

For example the GetAvARankName() method has this implemented to get the gender specific name:
Code:
GetAvARankName(GetUnitGender("player"), rank)
While the GetSkillLineInfo() method always return the name for the current used characters gender:
Code:
local lineName = GetSkillLineInfo(typeIndex, lineIndex)
Did anybody known how to get both names (male/female) without having two characters with one of the genders?

Thanks
Keldor
  Reply With Quote