LFGamer2004 Posted April 18 Posted April 18 (edited) Hello! Me and a friend, were messing with this old game files, but as expected, the files are very hard or impossible to edit "Packfile.dat". BUT, something did hit my attention was, the fact the PS2/Xbox/Wii versions has the 2Player (Split-screen) multiplayer featured, enabled and the PC Port, not. This version I'm using, are the original, with the patch 1.01 installed on. But, I mean the PC version, has a "Hidden" Multiplayer, that could be supposedely, actived... We've also discovered that the game has Debug material/stuff at your code, but for some reason, it cannot be actived, because the suppose references, was cutted from the final version, IG. However, after decompile using the ghidra and try different values with Cheat Engine, was possible we got some very interesting results, as you'll see right now! Check the images! It still doesn't over! We're still trying do reverse engineering from encrypted binary file: "Packfile.dat" which I was able to extract, some textures, using a not very, known tool: "Multi-Extractor 3.3.0" the remaing of the files are ".hnk" and ".dds" but they're technically encrypted as well. Being impossible extract or view them in any other tool! Someone do are able to develop a quickbms plugin for files of this game? if yes, let me know! I'll be glad in mod this game! :) Edited April 29 by LFGamer2004 Explainations
murasakiPinku Posted April 26 Posted April 26 This is sick, I'd love to see mods for this game. Want to edit textures, models, music, etc. Looking forward to it!. 1
zbirow Posted Saturday at 08:52 PM Posted Saturday at 08:52 PM hello, I did the analysis and noticed that the data is separated by !CMP . after it you have 4 bytes of some kind and the rest is data. all start with 78 9C which is the zlib header. which means that the files are compressed. I wrote a code that unpacks all the data to .dat files, after digesting one of the files in hex, I saw the DDS file header. I changed .dat to .dds and the file works. you can see the texture. Currently, that's all I managed to do, I will investigate further to preserve the names and extensions of the files. Link to my github repo with the code to unpack the files. (python) https://github.com/zbirow/Monster-Jam-Unpack 1
LFGamer2004 Posted yesterday at 01:48 AM Author Posted yesterday at 01:48 AM Thanks! I hope you be able to extract the 3D models & some parameter files, as: "MaterialAttributes.txt" etc... would be interessing modify these too!
zbirow Posted yesterday at 01:24 PM Posted yesterday at 01:24 PM (edited) 11 hours ago, LFGamer2004 said: Dzięki! Mam nadzieję, że będziesz w stanie wyodrębnić modele 3D i niektóre pliki parametrów, takie jak: „MaterialAttributes.txt” itd... byłoby interesujące zmodyfikować je również! you mean this txt? https://github.com/zbirow/Monster-Jam-Unpack/blob/main/chunk_00000.txt Edited yesterday at 01:25 PM by zbirow 1
LFGamer2004 Posted yesterday at 03:29 PM Author Posted yesterday at 03:29 PM (edited) 2 hours ago, zbirow said: you mean this txt? https://github.com/zbirow/Monster-Jam-Unpack/blob/main/chunk_00000.txt Yes! :O Edited yesterday at 03:30 PM by LFGamer2004
LFGamer2004 Posted yesterday at 03:40 PM Author Posted yesterday at 03:40 PM There a way to, pack the edited files, them into the "Packfile.dat" again? or would be necessary, a creation of a proper tool, to this kinda of modification?
LFGamer2004 Posted yesterday at 03:54 PM Author Posted yesterday at 03:54 PM BTW, what exaclty this file does?
zbirow Posted yesterday at 05:01 PM Posted yesterday at 05:01 PM 1 hour ago, LFGamer2004 said: Czy istnieje sposób na ponowne spakowanie edytowanych plików do „Packfile.dat”? Czy też konieczne byłoby stworzenie odpowiedniego narzędzia do tego rodzaju modyfikacji? currently, you still need to examine the Index (see my ReadMe documentation). Index contains references to addresses where files are, if you give a file of the same size, and there is no shift, then there is no problem, if there is, then you need to fix the Index. If you want to change the parameters in the txt file (which will not significantly affect the file size), you can use my code for packing packer.py. In the directory where you have Packfile.dat and Packer.py create a folder "pack", place the modified files there. (the names must match those from the extractor (unpack.py). you run packer.py, it takes files from the "pack" directory and creates a modified copy of Packfile.dat and as for the second txt file, it is also from the game data (I used different output names, that's why it's files , not chunk. fmod - it's a DLL library. It's in the main game directory, where the exe file is
zbirow Posted 20 hours ago Posted 20 hours ago 5 hours ago, LFGamer2004 said: There a way to, pack the edited files, them into the "Packfile.dat" again? or would be necessary, a creation of a proper tool, to this kinda of modification? Analyzing data today, I learned how it works specifically. I will be writing new tools. The documentation on github has been updated. When everything is ready, I will post here.
LFGamer2004 Posted 17 hours ago Author Posted 17 hours ago 2 hours ago, zbirow said: Analyzing data today, I learned how it works specifically. I will be writing new tools. The documentation on github has been updated. When everything is ready, I will post here. Hmm... Question, do this "plugins" would able to open, the one from Console version (PS2 to be more specific), or even Urban Assault ? These games, uses the same file extension (.Dat). but I think that wouldn't be totally possible, due the file complexity. But I'll try it later. Thank you for the info!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now