Solved Trying to extract assets from Senran Sakura: New Link

VanillaSkyy

Support
Original poster
Staff member
Support
VIP
Jan 15, 2019
275
810
93
27
G*59
Hi!
I'm trying to extract assets from the game Senran Sakura: New Link, but I've come across .lzs files and I have no idea what are those. Is anybody familiar with these types of files?
Thanks <3!
 

xyzhunter

PMT Modder
Staff member
Modding-Team
Oct 28, 2020
2,096
110,302
1,213
Indonesia
not sure , save script as .bms and decompress using quickbms :
Code:
#Quickbms Script
#by chrrox
#http://aluigi.altervista.org/quickbms.htm
comtype LZSS0
get zsize asize
get size long
math zsize -= 4
if SIZE & 0x80000000
log MEMORY_FILE 4 zsize
else
clog MEMORY_FILE 4 zsize size
endif
get files short MEMORY_FILE
goto 0 MEMORY_FILE
for i = 0 < files
get null short MEMORY_FILE
get type short MEMORY_FILE
get offset long MEMORY_FILE
get size long MEMORY_FILE
get id long MEMORY_FILE
get name basename
getdstring name2 0x30 MEMORY_FILE
string name + \
string name + name2
log name offset size MEMORY_FILE
next i
reference :
 
Last edited:
  • Like
Reactions: VanillaSkyy