The Great Escape (PC) .sch files
-
- Posts: 382
- Joined: Wed Sep 12, 2018 2:22 am
The Great Escape (PC) .sch files
Does anyone want to help me extract these?
Sample: https://drive.google.com/open?id=1LLDi1 ... 9JZP5d_bmY
Sample: https://drive.google.com/open?id=1LLDi1 ... 9JZP5d_bmY
-
- Posts: 382
- Joined: Wed Sep 12, 2018 2:22 am
The Great Escape (PC) .Dat and .SCH files
Can someone make a script that will extract these with proper file names?
dat: https://archive.org/download/The.Great. ... evel12.dat
sch: https://archive.org/download/The.Great. ... evel12.sch
dat: https://archive.org/download/The.Great. ... evel12.dat
sch: https://archive.org/download/The.Great. ... evel12.sch
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: The Great Escape (PC) .sch files
Does that mean that exists a script that extract them without proper filenames?
-
- Posts: 382
- Joined: Wed Sep 12, 2018 2:22 am
Re: The Great Escape (PC) .sch files
aluigi wrote:Does that mean that exists a script that extract them without proper filenames?
Well, see what you can do with the files I have provided for now.
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: The Great Escape (PC) .sch files
No, if you already found a script for these files you should specify that in your post.
I can't check every single file.
If you have info, share them.
I can't check every single file.
If you have info, share them.
-
- Posts: 382
- Joined: Wed Sep 12, 2018 2:22 am
Re: The Great Escape (PC) .sch files
aluigi wrote:No, if you already found a script for these files you should specify that in your post.
I can't check every single file.
If you have info, share them.
I have not found a script for this type of file, which is why I am asking somebody to make one.
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: The Great Escape (PC) .sch files
Your first link is dead and it's not possible to download the files in the archive as in your other 2 links.
-
- Posts: 382
- Joined: Wed Sep 12, 2018 2:22 am
Re: The Great Escape (PC) .sch files
aluigi wrote:Your first link is dead and it's not possible to download the files in the archive as in your other 2 links.
All right, how about these samples?: https://drive.google.com/open?id=1gzEop ... lJw0DGuqm8
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: The Great Escape (PC) .sch files
DAT has some messy information, no filenames.
SCH is a mess too but the audio data can be dumped by search the PFSM magic
SCH is a mess too but the audio data can be dumped by search the PFSM magic
-
- Posts: 382
- Joined: Wed Sep 12, 2018 2:22 am
Re: The Great Escape (PC) .sch files
aluigi wrote:DAT has some messy information, no filenames.
SCH is a mess too but the audio data can be dumped by search the PFSM magic
How do I do that? VGM Toolbox?
-
- Posts: 382
- Joined: Wed Sep 12, 2018 2:22 am
Re: The Great Escape (PC) .sch files
Update: I did just that. Now the question remains, how do I make them playable?
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: The Great Escape (PC) .sch files
I tought the codec was PS ADPCM but that's not the case (after all it's a PC game).
This is a dumping script for PFSM just in case, it dumps the raw data in them:
This is a dumping script for PFSM just in case, it dumps the raw data in them:
Code: Select all
for
findloc OFFSET binary "PFSM"
goto OFFSET
idstring "PFSM"
get SIZE long
savepos OFFSET
log "" OFFSET SIZE
goto SIZE 0 SEEK_CUR
next