Hi, I tried to add a new trait and I followed this tutorial forums.totalwar.org/vb/showthread.php?t=77176
The trait works (it adds charm to the princess), but I can't see its description text in the character window!

That's what I've done:

File export_descr_character_traits.txt
Trait
;------------------------------------------
Trait BeautifulVoice
Characters princess

Level Pleasant
Description Pleasant_desc
EffectsDescription Pleasant_effects_desc
Threshold 1

Effect Charm 1

Level Charming
Description Charming_desc
EffectsDescription Charming_effects_desc
Threshold 2

Effect Charm 2

Level Heavenly Voice
Description Heavenly_desc
EffectsDescription Heavenly_effects_desc
Threshold 3

Effect Charm 3

And trigger...
;------------------------------------------
Trigger princess_voice
WhenToTest CharacterComesOfAge

Condition AgentType = princess

Affects BeautifulVoice 1 Chance 10
Affects BeautifulVoice 1 Chance 5
Affects BeautifulVoice 1 Chance 2

File export_VnVs.txt
¬--------------------

{Pleasant} Pleasant Voice

{Pleasant_desc}
This woman has a Pleasant Voice

{Pleasant_effects_desc}
+1 Charm

¬--------------------

{Charming} Charming Voice

{Charming_desc}
This woman has a Charming Voice

{Charming_effects_desc}
+2 Charm

¬--------------------

{Heavenly} Heavenly Voice

{Heavenly_desc}
This woman has a Heavenly Voice

{Heavenly_effects_desc}
+3 Charm


File export_descr_vnvs_enums.txt
Pleasant Voice
Pleasant Voice_desc
Pleasant Voice_effects_desc
Charming Voice
Charming Voice_desc
Charming Voice_effects_desc
Heavenly Voice
Heavenly Voice_desc
Heavenly Voice_effects_desc
Heavenly Voice_gain_desc
Heavenly Voice_epithet_desc



In the system.log.txt I found this errors
14:58:09.671 [script.err] [error] Script Error in data/export_descr_character_traits.txt, at line 12, column 11
Could'n find level name description string for trait(BeautifulVoice) level(Pleasant).
14:58:09.671 [script.err] [error] Script Error in data/export_descr_character_traits.txt, at line 13, column 22
Could'n find description string for trait(BeautifulVoice) level(Pleasant_desc).
14:58:09.671 [script.err] [error] Script Error in data/export_descr_character_traits.txt, at line 14, column 29
Could'n find effect description string for trait(BeautifulVoice) level(Pleasant_effects_desc).
14:58:09.671 [script.err] [error] Script Error in data/export_descr_character_traits.txt, at line 19, column 11
Could'n find level name description string for trait(BeautifulVoice) level(Charming).
14:58:09.671 [script.err] [error] Script Error in data/export_descr_character_traits.txt, at line 20, column 22
Could'n find description string for trait(BeautifulVoice) level(Charming_desc).
14:58:09.671 [script.err] [error] Script Error in data/export_descr_character_traits.txt, at line 21, column 29
Could'n find effect description string for trait(BeautifulVoice) level(Charming_effects_desc).
14:58:09.671 [script.err] [error] Script Error in data/export_descr_character_traits.txt, at line 26, column 11
Could'n find level name description string for trait(BeautifulVoice) level(Heavenly).
14:58:09.671 [script.err] [error] Script Error in data/export_descr_character_traits.txt, at line 27, column 22
Could'n find description string for trait(BeautifulVoice) level(Heavenly_desc).
14:58:09.671 [script.err] [error] Script Error in data/export_descr_character_traits.txt, at line 28, column 29
Could'n find effect description string for trait(BeautifulVoice) level(Heavenly_effects_desc).


After hours wasted... I don't know what to do...