Halo Infinite Where is the localization file? [Slipspace Engine]
-
- Posts: 17
- Joined: Sun Mar 08, 2020 11:22 am
Halo Infinite Where is the localization file? [Slipspace Engine]
Hello i am a fan of "Halo Infinite" I am a game that I want to translate language but I can not find the language files of the game do you help?
-
- Posts: 165
- Joined: Wed Jun 01, 2016 5:53 pm
Re: Halo Infinite Where is the localization file? [Slipspace Engine]
Download and install python 3.8.0. After installation of python run cmd and type "pip install numpy" hit enter
Download and edit paths in "unpacker.py"
Right click on unpacker.py and select Edit with IDLE.
In IDLE select Run > Run Module.
This will unpack all Modules from game folder you specified in unpacker.py
Hints for paths.
In unpacker.py go to line 146 "decompressor = OodleDecompressor" and edit path for oo2core_8_win64.dll
Now go to line 222 "unpack_path = " and edit path for folder you want to unpack files
On another line 223 edit path to the game folder ending with "deploy" folder
If you want unpack individual Module files you must dissable line 226 extract_all_modules() by adding # before text. So it should look like this "# extract_all_modules()"
Now enable line 225 # extract_module(module_name) by deleting # before text.
And lastly on line 224 you must specified file you want to unpack.
Its only for unpack. Don't expect re-pack soon. Also it's not mine.
Download
Code: Select all
https://github.com/MontagueM/HaloInfiniteModuleUnpacker
Right click on unpacker.py and select Edit with IDLE.
In IDLE select Run > Run Module.
This will unpack all Modules from game folder you specified in unpacker.py
Hints for paths.
In unpacker.py go to line 146 "decompressor = OodleDecompressor" and edit path for oo2core_8_win64.dll
Now go to line 222 "unpack_path = " and edit path for folder you want to unpack files
On another line 223 edit path to the game folder ending with "deploy" folder
If you want unpack individual Module files you must dissable line 226 extract_all_modules() by adding # before text. So it should look like this "# extract_all_modules()"
Now enable line 225 # extract_module(module_name) by deleting # before text.
And lastly on line 224 you must specified file you want to unpack.
Its only for unpack. Don't expect re-pack soon. Also it's not mine.