JADE Game Engine .bin file pack-tool v1.0 by xor37h/hitmen
With this tool you can decompress and recompress the extracted .bin files
from the extracted KingKongTheGame_clean.bf bigfile on the 360 kiosk disc.
< link expired >
It should (but doesn't have to) work on other packed .bin files using the JADE game engine like:
– Beyond Good & Evil
– Prince of Persia: The Sands of Time
– Prince of Persia: Warrior Within
– Prince of Persia: The Two Thrones
– Peter Jackson's King Kong: The Official Game of the Movie
– Rayman Raving Rabbids
– TMNT
– Rayman Raving Rabbids 2
– Naruto: Rise of a Ninja
– Naruto: The Broken Bond
– James Cameron's Avatar: The Game (Wii version)
– Prince of Persia: The Forgotten Sands (Wii / PSP version)
Join also our Discord channel! Click here.
JADE Game Engine .bin file pack-tool v1.0
- ikskoks
- Moderator
- Posts: 646
- Joined: Thu Jul 26, 2012 5:06 pm
- Location: Poland, Łódź
- Has thanked: 449 times
- Been thanked: 187 times
- Contact:
JADE Game Engine .bin file pack-tool v1.0
You do not have the required permissions to view the files attached to this post.
Re: JADE Game Engine .bin file pack-tool v1.0
Thanks.
In Beyond Good & Evil, the LZO block header doesn't include the filesize field. So it's this:
Another point of note: In the original protected BG&E PC CD version the ff8*.bin files look to be encrypted or something up until offset 0x7d000 in each file. The GOG version is clean.
I've uploaded the ZIP elsewhere to make it easier for people to download without having to register here:
http://www.filedropper.com/jadepack
http://s000.tinyupload.com/index.php?fi ... 9214962880
http://www.filehosting.org/file/details ... depack.zip
http://www.megafileupload.com/e83x/jadepack.zip
In Beyond Good & Evil, the LZO block header doesn't include the filesize field. So it's this:
Code: Select all
static struct header
{
// uint32 filesize;
uint32 unpacked_block;
uint32 packed_block;
} header;
I've uploaded the ZIP elsewhere to make it easier for people to download without having to register here:
http://www.filedropper.com/jadepack
http://s000.tinyupload.com/index.php?fi ... 9214962880
http://www.filehosting.org/file/details ... depack.zip
http://www.megafileupload.com/e83x/jadepack.zip
Re: JADE Game Engine .bin file pack-tool v1.0
All prince of persia games .bin's generate empty files. Commenting out uint32 filesize; makes the whole compilation fail. Even if you comment out all the leftover code that uses .filesize after compilation it still fails. Could you please compile a working .exe for POP?jadebin wrote: ↑Fri Dec 25, 2015 2:26 pmThanks.
In Beyond Good & Evil, the LZO block header doesn't include the filesize field. So it's this:
Another point of note: In the original protected BG&E PC CD version the ff8*.bin files look to be encrypted or something up until offset 0x7d000 in each file. The GOG version is clean.Code: Select all
static struct header { // uint32 filesize; uint32 unpacked_block; uint32 packed_block; } header;
I've uploaded the ZIP elsewhere to make it easier for people to download without having to register here:
http://www.filedropper.com/jadepack
http://s000.tinyupload.com/index.php?fi ... 9214962880
http://www.filehosting.org/file/details ... depack.zip
http://www.megafileupload.com/e83x/jadepack.zip