Monsters vs Aliens (PS2) *.DAT
- 
				Mygoshi
 - Posts: 654
 - Joined: Mon Oct 27, 2014 1:49 pm
 
Monsters vs Aliens (PS2) *.DAT
Hello,
I'm asking if it's possible to write a script in order to extract the content of this game.
Here's the archive: (expired)
Thanks!
			
			
													I'm asking if it's possible to write a script in order to extract the content of this game.
Here's the archive: (expired)
Thanks!
					Last edited by Mygoshi on Wed Feb 17, 2021 9:46 pm, edited 2 times in total.
									
			
						
										
						- 
				aluigi
 - Site Admin
 - Posts: 12984
 - Joined: Wed Jul 30, 2014 9:32 pm
 
Re: Monsters vs Aliens (PS2) *.DAT
Try this:
			
			
									
						
										
						Code: Select all
get VER long
get FILES long
for i = 0 < FILES
    getdstring NAME 0x100
    get OFFSET long
    get SIZE long
    log NAME OFFSET SIZE
next i- 
				Mygoshi
 - Posts: 654
 - Joined: Mon Oct 27, 2014 1:49 pm
 
Re: Monsters vs Aliens (PS2) *.DAT
It worked like a charm! Thanks 
			
			
													
					Last edited by Mygoshi on Wed Feb 17, 2021 9:47 pm, edited 2 times in total.
									
			
						
										
						- 
				Mygoshi
 - Posts: 654
 - Joined: Mon Oct 27, 2014 1:49 pm
 
Re: Monsters vs Aliens (PS2) *.DAT
Now it's time to convert the music properly...
			
			
													
					Last edited by Mygoshi on Thu Feb 18, 2021 7:24 pm, edited 2 times in total.
									
			
						
										
						- 
				Mygoshi
 - Posts: 654
 - Joined: Mon Oct 27, 2014 1:49 pm
 
Re: Monsters vs Aliens (PS2) *.DAT
Unfortunately I'm in big trouble with the Sony ADPCM files, they don't play correctly because I can't find the right interleave and offset 
			
			
													
					Last edited by Mygoshi on Thu Feb 18, 2021 7:25 pm, edited 2 times in total.
									
			
						
										
						- 
				ThatTrueStruggle
 - Posts: 20
 - Joined: Tue Nov 17, 2015 12:11 am
 
Re: Monsters vs Aliens (PS2) *.DAT
Can you not use PSound? It allows for extraction and playback of Sony ADPCM streams found in a file.
			
			
									
						
										
						- 
				Mygoshi
 - Posts: 654
 - Joined: Mon Oct 27, 2014 1:49 pm
 
Re: Monsters vs Aliens (PS2) *.DAT
I also tried vag scanner but it's not clear for me how to use it properly.
			
			
													
					Last edited by Mygoshi on Thu Feb 18, 2021 7:27 pm, edited 2 times in total.
									
			
						
										
						- 
				AnonBaiter
 - Posts: 1125
 - Joined: Tue Feb 02, 2016 2:35 am
 
Re: Monsters vs Aliens (PS2) *.DAT
Look here:
http://zenhax.com/viewtopic.php?f=6&t=2299&start=20#p12703
You'll need to read the post before using it. If for some reason it doesn't work, then don't bother calling me because I have no other solutions.
			
			
									
						
										
						http://zenhax.com/viewtopic.php?f=6&t=2299&start=20#p12703
You'll need to read the post before using it. If for some reason it doesn't work, then don't bother calling me because I have no other solutions.
- 
				Mygoshi
 - Posts: 654
 - Joined: Mon Oct 27, 2014 1:49 pm
 
Re: Monsters vs Aliens (PS2) *.DAT
Thanks!
			
			
													
					Last edited by Mygoshi on Thu Feb 18, 2021 7:27 pm, edited 2 times in total.
									
			
						
										
						- 
				Mygoshi
 - Posts: 654
 - Joined: Mon Oct 27, 2014 1:49 pm
 
Re: Monsters vs Aliens (PS2) *.DAT
Argh... still stuck!