Hello! I was just wondering if someone could help me find the compression type for these files. There is already a QuickBMS script for them (aluigi.org/bms/yakuza_hd.bms) , but it has no mention of compression type in it. Any help would be greatly appreciated, thank you!
Yakuza 1 .DAT files
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Yakuza 1 .DAT files
The files are not compressed indeed.
But probably you refer to the AVL files extracted from the DAT archive, they have an "AVLZ" magic and are compressed with LZSS, feel free to decompress them with this script:
But probably you refer to the AVL files extracted from the DAT archive, they have an "AVLZ" magic and are compressed with LZSS, feel free to decompress them with this script:
Code: Select all
comtype lzss0
idstring "AVLZ"
get SIZE long
get ZSIZE long
savepos OFFSET
math ZSIZE - OFFSET
get NAME basename
clog NAME OFFSET ZSIZE SIZE
-
- Posts: 33
- Joined: Fri May 14, 2021 11:33 pm
Re: Yakuza 1 .DAT files
aluigi wrote:The files are not compressed indeed.
But probably you refer to the AVL files extracted from the DAT archive, they have an "AVLZ" magic and are compressed with LZSS, feel free to decompress them with this script:Code: Select all
comtype lzss0
idstring "AVLZ"
get SIZE long
get ZSIZE long
savepos OFFSET
math ZSIZE - OFFSET
get NAME basename
clog NAME OFFSET ZSIZE SIZE
Yeah i had figured it out a few days after I posted this and forgot to update
thank you so much however!
-
- Posts: 16
- Joined: Mon Jul 19, 2021 12:48 am
Re: Yakuza 1 .DAT files
Is this for the original Yakuza 1 on PS2, or the remaster?