Dark Seed PS1 VOL/IDX

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

Dark Seed PS1 VOL/IDX

Post by lemurboy12 »

VOL is the archive and IDX is the file list.
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Dark Seed PS1 VOL/IDX

Post by Ekey »

Code: Select all

# Dark Seed (PS1) (IDX/VOL) format
# script for QuickBMS http://quickbms.aluigi.org

endian big

open FDDE "idx" 0
open FDDE "vol" 1

idstring "AFS_INDEX_100"
goto 56
get FILES long

for i = 0 < FILES
   getdstring NAME 18
   get FLAG long
   get DUMMY long
   get OFFSET long
   get SIZE long
   log NAME OFFSET SIZE 1
next i