DEBRIS DAT files. 1 of the DAT file look like as exe. 1 is the Archive.
Samples
https://drive.google.com/file/d/0B0oEDr ... sp=sharing
			
			
									
						
										
						DEBRIS DAT
- 
				id-daemon
- Posts: 1040
- Joined: Sun Mar 22, 2015 7:09 pm
Re: DEBRIS DAT
What's going on? Are you on a mission to unpack each & every game in the world as fast as possible?
			
			
									
						
										
						- 
				AntonZab
- Posts: 461
- Joined: Thu Oct 01, 2015 5:03 pm
Re: DEBRIS DAT
no. I had tried to unpack all these games. I wanted to see what's inside. I wanted to listen to the songs individually. But I could not. Now I find you. You are a magician. You all know how to do. I'm sorry that so quickly spread archives. Sorry
			
			
									
						
										
						- 
				id-daemon
- Posts: 1040
- Joined: Sun Mar 22, 2015 7:09 pm
Re: DEBRIS DAT
No need to sorry. If you're so interested in so many games and formats, this is a chance for you to learn how this is done. Learn scripting, hex editing, and then you'll be able to help yourself and others.
			
			
									
						
										
						- 
				AntonZab
- Posts: 461
- Joined: Thu Oct 01, 2015 5:03 pm
Re: DEBRIS DAT
I've tried. But it is very difficult.
			
			
									
						
										
						- 
				aluigi
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: DEBRIS DAT
Better for my collection of scripts 
For sounds.dat I suggest you to use a file ripper, they are all RIFF plus one icon.
While for graphics.dat use this script:
			
			
									
						
										
						
For sounds.dat I suggest you to use a file ripper, they are all RIFF plus one icon.
While for graphics.dat use this script:
Code: Select all
for
    getdstring NAME 12
    get OFFSET long
    get SIZE long
    get DUMMY long
    if SIZE == 0
        break
    endif
    log NAME OFFSET SIZE
next