February 16Feb 16 How do I convert my folder into an exe file? I want it to be compressed and encrypted using XOR and zlib, and users must use the exe file to run it It contains the translated game files and also an exe file. All of these files are inside multiple folder Edited February 16Feb 16 by 555
February 17Feb 17 Localization 14 hours ago, 555 said: How do I convert my folder into an exe file? I want it to be compressed and encrypted using XOR and zlib, and users must use the exe file to run it It contains the translated game files and also an exe file. All of these files are inside multiple folder It all depends on how you want it to look. Do you want your .exe file to be an installer or to launch the .exe file inside? If it's the latter, it depends on the size of the game. When launching, it will have to decrypt and decompress all the files. For large files, this is very time-consuming.
February 18Feb 18 Author 11 hours ago, zbirow said: It all depends on how you want it to look. Do you want your .exe file to be an installer or to launch the .exe file inside? If it's the latter, it depends on the size of the game. When launching, it will have to decrypt and decompress all the files. For large files, this is very time-consuming. I want when they launch the exe decrypt and decompress all the files Not large maybe 2gb fan translation Edited February 18Feb 18 by 555
February 18Feb 18 Localization 9 godzin temu 555 powiedział: Chcę, aby po uruchomieniu exe odszyfrowywano i rozpakowano wszystkie pliki Nie duży, może 2 GB oryginał wentylatora But it extracts the files to disk, and it's a one-time installer, right? If not, it doesn't make sense.
February 18Feb 18 Author 11 hours ago, zbirow said: But it extracts the files to disk, and it's a one-time installer, right? If not, it doesn't make sense. No
February 20Feb 20 Localization On 2/18/2026 at 10:36 PM, 555 said: No Each time you launch the game, it will need to be unpacked and decrypted, so you'll have to wait 2-3 minutes (depending on your processor). Additionally, you'll need a lot of RAM to fit the entire game into RAM. The game may require system resources it won't have. This is horribly suboptimal. There's another way, VFS (Virtual File System), but it's a workaround that will take months. I don't know what you're trying to achieve, but this isn't a good idea.
March 4Mar 4 Author On 2/20/2026 at 7:26 PM, zbirow said: Each time you launch the game, it will need to be unpacked and decrypted, so you'll have to wait 2-3 minutes (depending on your processor). Additionally, you'll need a lot of RAM to fit the entire game into RAM. The game may require system resources it won't have. This is horribly suboptimal. There's another way, VFS (Virtual File System), but it's a workaround that will take months. I don't know what you're trying to achieve, but this isn't a good idea. It's okay How? The folder contains game exe and translation files
Create an account or sign in to comment