The Great Escape (PC) .sch files

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
Puterboy1
Posts: 382
Joined: Wed Sep 12, 2018 2:22 am

The Great Escape (PC) .sch files

Post by Puterboy1 »

Does anyone want to help me extract these?

Sample: https://drive.google.com/open?id=1LLDi1 ... 9JZP5d_bmY
Puterboy1
Posts: 382
Joined: Wed Sep 12, 2018 2:22 am

The Great Escape (PC) .Dat and .SCH files

Post by Puterboy1 »

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
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: The Great Escape (PC) .sch files

Post by aluigi »

Does that mean that exists a script that extract them without proper filenames?
Puterboy1
Posts: 382
Joined: Wed Sep 12, 2018 2:22 am

Re: The Great Escape (PC) .sch files

Post by Puterboy1 »

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.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: The Great Escape (PC) .sch files

Post by aluigi »

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.
Puterboy1
Posts: 382
Joined: Wed Sep 12, 2018 2:22 am

Re: The Great Escape (PC) .sch files

Post by Puterboy1 »

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.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: The Great Escape (PC) .sch files

Post by aluigi »

Your first link is dead and it's not possible to download the files in the archive as in your other 2 links.
Puterboy1
Posts: 382
Joined: Wed Sep 12, 2018 2:22 am

Re: The Great Escape (PC) .sch files

Post by Puterboy1 »

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
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: The Great Escape (PC) .sch files

Post by aluigi »

DAT has some messy information, no filenames.

SCH is a mess too but the audio data can be dumped by search the PFSM magic
Puterboy1
Posts: 382
Joined: Wed Sep 12, 2018 2:22 am

Re: The Great Escape (PC) .sch files

Post by Puterboy1 »

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?
Puterboy1
Posts: 382
Joined: Wed Sep 12, 2018 2:22 am

Re: The Great Escape (PC) .sch files

Post by Puterboy1 »

Update: I did just that. Now the question remains, how do I make them playable?
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: The Great Escape (PC) .sch files

Post by aluigi »

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:

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