Roguemaster43 0 Posted January 17, 2023 For some reason, I put my dialog.tlk file onto the TLK2XML.exe, and after it seems to go through the process, nothing happens. There's no converted file anywhere. What am I doing wrong? Quote Share this post Link to post Share on other sites
DarthParametric 3,777 Posted January 18, 2023 From Xoreos? All of the Xoreos Tools exes are commandline. They are intended to be used from a console with user-supplied arguments. I have a couple of batch files for converting TLKs back and forth: @echo off set /p gametype="Please enter either kotor or kotor2 to specify game version: " set /p tlkname="Please enter the filename of the TLK (without extension): " tlk2xml --%gametype% %tlkname%.tlk %tlkname%.xml pause @echo off set /p gametype="Please enter either kotor or kotor2 to specify game version: " set /p tlkname="Please enter the filename of the XML (without extension): " xml2tlk --%gametype% %tlkname%.xml %tlkname%.tlk pause TLK_to_XML.bat XML_to_TLK.bat 1 Quote Share this post Link to post Share on other sites