Hi, I found that 0x4 means Get files long. But I don't know how to unpack these files.
Samples https://www.sendspace.com/file/sj7mv9
The Fruit of Grisaia *.int
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: The Fruit of Grisaia *.int
I guess the 8 bytes of information of the files (probably size or offset+size or zsize+size) and the files are encrypted with blowfish (ecb) but I have no idea about the key (it's not the bytes in key.dat).
-
- Posts: 330
- Joined: Fri Nov 21, 2014 4:03 am
Re: The Fruit of Grisaia *.int
aluigi wrote:I guess the 8 bytes of information of the files (probably size or offset+size or zsize+size) and the files are encrypted with blowfish (ecb) but I have no idea about the key (it's not the bytes in key.dat).
I found how to unpack *.int files. http://asmodean.reverse.net/pages/exkifint.html
Could you make bms script?
unpack sample https://www.sendspace.com/file/zkloia
*.int samples https://www.sendspace.com/file/48z1v4
exkifint_v3_unpack.bat will unpack *.int files. Unpacked files use zlib.
For example, ama_002b.cst file from scene.int...
Code: Select all
idstring "CatScene"
for
get ZSIZE long
get SIZE long
savepos OFFSET
get packname filename
string packname += _unpacked/
clog packname OFFSET ZSIZE SIZE
savepos OFFSET
if OFFSET == EOF
clenexit
next
Result
exkifint_v3.exe will find <v-code> in Grisaia.exe.
All *.int files can be unpacked exkifint_v2.exe with <v-code> FW-XGHSGKCJ.
But it can't get name and extention, so exkifint_v3 is useful.
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: The Fruit of Grisaia *.int
http://aluigi.org/papers/bms/others/kif_int.bms
The files are dumped without filename because it's game specific, but now you can reimport them.
CatScene files are decompressed on-the-fly.
The files are dumped without filename because it's game specific, but now you can reimport them.
CatScene files are decompressed on-the-fly.
-
- Posts: 330
- Joined: Fri Nov 21, 2014 4:03 am
Re: The Fruit of Grisaia *.int
aluigi wrote:http://aluigi.org/papers/bms/others/kif_int.bms
The files are dumped without filename because it's game specific, but now you can reimport them.
CatScene files are decompressed on-the-fly.
Thanks a lot!!