Bladestorm Games 0 Posted January 7 Share Posted January 7 Hey there, I am trying to edit the text that is displayed on perks. For example, I want to change Archery Rank 1's long description. In "progression.xml" I see the line: <effect_description level="1" desc_key="perkArcheryRank1Desc" long_desc_key="perkArcheryRank1LongDesc"/> If i change "long_desc_key="perkArcheryRank1LongDesc"/>" to something like "long_desc_key="Hello World"/>", that will display "Hello World" if you hover over that perk. But what I'm trying to find is where exactly "perkArcheryRank1LongDesc" is set at. Thanks! Link to post Share on other sites
bdubyah 134 Posted January 7 Share Posted January 7 Localization.txt. 1 Link to post Share on other sites
Bladestorm Games 0 Posted January 7 Author Share Posted January 7 Thank you! I tried that before, and it didnt seem to work. perhaps I forgot to actually save the TXT file, because I just now tried again and it works. I'm also watching Flexible Game's "7 Days to Die Tutorial: Making A Mod" video to learn how to access data without modifying the default files. I made a new mod folder (7 Days To Die\mods\test\Config) and using this to access and change the Archery Rank 1's long description: <test> <set xpath="/progression/perks/perk[@name='perkArchery']/effect_group/effect_description[@level='1']/@long_desc_key">Hello World</set> </test> Had to try a few times in getting the line right, but it works now : ) Link to post Share on other sites
bdubyah 134 Posted January 7 Share Posted January 7 Nice. Good job. Link to post Share on other sites
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now