Important information: this site is currently scheduled to go offline indefinitely by end of the year.

Game: Nier, LZO compression..

Read or post about compression. And decompression. Or ask questions how to decompress your files.
Post Reply
mariokart64n
ultra-veteran
ultra-veteran
Posts: 586
Joined: Sun Jun 05, 2005 12:00 pm
Location: Ontario, Canada
Has thanked: 36 times
Been thanked: 243 times

Game: Nier, LZO compression..

Post by mariokart64n »

The contents of this post was deleted because of possible forum rules violation.
Maxscript and other finished work I've done can be found on my DeviantArt account
Rikto
n00b
Posts: 13
Joined: Sat May 01, 2010 9:37 pm
Has thanked: 1 time
Been thanked: 7 times

Re: Game: Nier, LZO compression..

Post by Rikto »

I would also be very interested in these files if anyone can figure out how to decompress them.
pixellegolas
ultra-veteran
ultra-veteran
Posts: 423
Joined: Mon Aug 11, 2008 11:30 pm
Has thanked: 27 times
Been thanked: 15 times

Re: Game: Nier, LZO compression..

Post by pixellegolas »

looked at it with offzip and signsrch and the only thing I found was on the file KAINE010.MDV

000867ad 309 padding used in hashing algorithms (0x80 0 ... 0) [..64]

The other didnt show me anything, the lzo in the beginning doesnt actually always mean lzo but of course it's a big chance :)
chrrox
Moderator
Posts: 2602
Joined: Sun May 18, 2008 3:01 pm
Has thanked: 57 times
Been thanked: 1422 times

Re: Game: Nier, LZO compression..

Post by chrrox »

I got this its lzo1x

Here is the Script

Code: Select all

#Xbox360 NIER
#quickbms script
#By chrrox
endian big
get name FILENAME
string name + ".dec"
get lzo long
get version long
get subversion long
get files long
get TotalUncompSize long
get unk long
goto 0x20
comtype LZO1X
for i = 1 to files
get memoffset long
get size long
get zsize long
savepos offset
append
clog MEMORY_FILE offset zsize size
append
math offset + zsize
goto offset
Padding 0x10000
next i
log NAME 0 TotalUncompSize MEMORY_FILE
Post Reply