DS Download Station (LZOn)

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
Adrot
Posts: 10
Joined: Wed Nov 08, 2017 2:36 pm

DS Download Station (LZOn)

Post by Adrot »

In all demos, it says LZOn at the beginning, possibly LZ compression?
No specified format at the file extension...
AWIE seems to be just the game's Title ID (Hotel Dusk?).
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: DS Download Station (LZOn)

Post by aluigi »

Yes, it's LZO1x:

Code: Select all

# DS Download Station

comtype lzo1x
endian big
idstring "LZOn"
get DUMMY long
get SIZE long
get ZSIZE long
savepos OFFSET
get NAME filename
string NAME + "_unpacked"
clog NAME OFFSET ZSIZE SIZE
Adrot
Posts: 10
Joined: Wed Nov 08, 2017 2:36 pm

Re: DS Download Station (LZOn)

Post by Adrot »

Got it, thx.