Family Feud 3DO .STREAM

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

Family Feud 3DO .STREAM

Post by lemurboy12 »

These files contain .CEL images.
BloodRaynare
Posts: 367
Joined: Fri Mar 10, 2017 7:23 am

Re: Family Feud 3DO .STREAM

Post by BloodRaynare »

Try these scripts to extract the CEL images, which then you can open with 3DOResExplorer tool:

Code: Select all

get STREAM_SZ asize

endian big

get FNAME basename

for i = 0
   get CEL_SIZE long
   savepos CURRPOS
   string NAME p "%s_%03i.cel" FNAME i
   log NAME CURRPOS CEL_SIZE
   math CURRPOS + CEL_SIZE
   if CURRPOS >= STREAM_SZ
      break
   else
      goto CURRPOS
   endif
next i
lemurboy12
Posts: 265
Joined: Fri Oct 17, 2014 2:57 am

Re: Family Feud 3DO .STREAM

Post by lemurboy12 »

It works, thanks.