Riding Star RS3.DAT

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
lemurboy12
Posts: 265
Joined: Fri Oct 17, 2014 2:57 am

Riding Star RS3.DAT

Post by lemurboy12 »

PS2 version:
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Riding Star RS3.DAT

Post by Ekey »

Code: Select all

# Riding Star 3 (DAT format)
# script for QuickBMS http://quickbms.aluigi.org

idstring "Riding Star 3"
goto 32
get FILES long
goto 64
for i = 0 < FILES
   getdstring NAME 104
   get OFFSET long
   get ZSIZE long
   get FLAG long
   get DUMMY long #0
   get SIZE long
   get DUMMY long #0
   
   if FLAG == 1
       log NAME OFFSET ZSIZE
   else
       log NAME OFFSET SIZE
   endif
next i


Some files are compressed, but due to the fact that cutted parts are with a small size, I can't tell which algorithm is used and they will be extracted in a compressed form.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Riding Star RS3.DAT

Post by aluigi »

@lemurboy12
Can you provide the whole file or a bigger sample so we can solve the doubt about the compression?