You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Game: pokemon scarlet
version: 1.0.1
When I run full_extract.py it will extract from the files and then fail when trying to extract the trpak files IT says it couldnt find a module if I am missing one could u tell me which one?
Full report(Without the extracting pf the trpfs and trpfd):
Extraction complete!
Parsing output\arc\ymap.trpak
Traceback (most recent call last):
File ".\full_extract.py", line 130, in
ParseFlatbuffer(output_dir)
File ".\full_extract.py", line 117, in ParseFlatbuffer
decompressed_data = OodleDecompress(bytes(compressed_data), data_size, data["files"][i]["decompressed_size"])
File ".\full_extract.py", line 89, in OodleDecompress
handle = cdll.LoadLibrary(filename)
File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.7_3.7.2544.0_x64__qbz5n2kfra8p0\lib\ctypes_init_.py", line 442, in LoadLibrary
return self.dlltype(name)
File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.7_3.7.2544.0_x64__qbz5n2kfra8p0\lib\ctypes_init.py", line 364, in init
self._handle = _dlopen(self._name, mode)
OSError: [WinError 126] Das angegebene Modul wurde nicht gefunden
The text was updated successfully, but these errors were encountered:
I had the same issue. It looked like Python was having trouble loading the DLL via a relative path. I added a call to os.path.realpath to the top of the loop in OodleDecompress:
Game: pokemon scarlet
version: 1.0.1
When I run full_extract.py it will extract from the files and then fail when trying to extract the trpak files IT says it couldnt find a module if I am missing one could u tell me which one?
Full report(Without the extracting pf the trpfs and trpfd):
Extraction complete!
Parsing output\arc\ymap.trpak
Traceback (most recent call last):
File ".\full_extract.py", line 130, in
ParseFlatbuffer(output_dir)
File ".\full_extract.py", line 117, in ParseFlatbuffer
decompressed_data = OodleDecompress(bytes(compressed_data), data_size, data["files"][i]["decompressed_size"])
File ".\full_extract.py", line 89, in OodleDecompress
handle = cdll.LoadLibrary(filename)
File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.7_3.7.2544.0_x64__qbz5n2kfra8p0\lib\ctypes_init_.py", line 442, in LoadLibrary
return self.dlltype(name)
File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.7_3.7.2544.0_x64__qbz5n2kfra8p0\lib\ctypes_init.py", line 364, in init
self._handle = _dlopen(self._name, mode)
OSError: [WinError 126] Das angegebene Modul wurde nicht gefunden
The text was updated successfully, but these errors were encountered: