[PS2] King Kong Text .bin

How to translate the files of a game
Joao13_BR
Posts: 38
Joined: Sat Jan 13, 2018 7:58 pm

[PS2] King Kong Text .bin

Post by Joao13_BR »

Image Would a tool for the text of this game be possible? The encoding of these files is LZO.

Image
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: [PS2] King Kong Text .bin

Post by aluigi »

Not exactly sure about the format of the decompressed data but let's start to decompress it and maybe someone else would like to contribute:

Code: Select all

comtype lzo1x
get SIZE long
get ZSIZE long
savepos OFFSET
get NAME basename
clog NAME OFFSET ZSIZE SIZE
Joao13_BR
Posts: 38
Joined: Sat Jan 13, 2018 7:58 pm

Re: [PS2] King Kong Text .bin

Post by Joao13_BR »

aluigi wrote:Not exactly sure about the format of the decompressed data but let's start to decompress it and maybe someone else would like to contribute:

Code: Select all

comtype lzo1x
get SIZE long
get ZSIZE long
savepos OFFSET
get NAME basename
clog NAME OFFSET ZSIZE SIZE

Thank you Aluigi!