by gameside
updated:
v1.3
- added export as txt option (see program help)
- fix a small bug
- fix problem of extraction of some languages
- fix the problem of not being able to import some languages
- fix a small problem with EP3_S4A_Localization file
- added new added Japanese language to the tool - this new version wont work on older game version that don't have Japanese language, use v1.3.3 for them
with this tool you can export all texts from the game files to json or txt
- you can either export all languages from the file or select what language you want to export.
- by default program only convert those string that need to convert to utf-16 (when it have any Unicode char ex Arabic) and use ascii for rest. but you can also force it to write all strings as utf-16.
How to use:
you can see program help with -h/--help option.
example of export English and German languages from file (json mode)
Code: Select all
LiS-textTool.exe -e -f path-to-file-without-extension --lang=english,german
this will create a json file beside the game files.
example of import json back to game file.
Code: Select all
LiS-textTool.exe -i -f path-to-file-without-extension
its need all uexp, uasset and the json file in same folder.
by default tool use the json format for saving the output, but if you want you can use -t/--txt option to make tool export strings to a txt file instead
following example will export German language to a txt file beside of game files
Code: Select all
LiS-textTool.exe -e -f path-to-file-without-extension --txt --lang=german
Notes about txt mode:
- keep in mind you can export more then one language in txt mode too, but if you want to import exported file back, you should just export one language.
- don't delete or change first two lines in txt file.
- if you have both exported json and txt file beside the uexp/uasset and try to import strings back, tool will perfer to import the json file, but you can force tool too import txt by using -t/--txt option in import mode too.
Code: Select all
LiS-textTool.exe -i -f path-to-file-without-extension -t
older version:
v1.1
v1.3
v1.3.1
v1.3.2
v1.3.3