Family Feud 3DO .STREAM
- 
				lemurboy12
- Posts: 265
- Joined: Fri Oct 17, 2014 2:57 am
Family Feud 3DO .STREAM
These files contain .CEL images.
			
			
									
						
										
						- 
				BloodRaynare
- Posts: 367
- Joined: Fri Mar 10, 2017 7:23 am
Re: Family Feud 3DO .STREAM
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
It works, thanks.