I've recently tried to extract the files for this game, but i have not seen this file format before and i am unsure if there are programs to extract the .PC files for this specific game
Here is a file i found within the directory of the PC version, because from what i've seen there don't seem to be any differences between the 'L*' files of the PS2 version and the PC version.
https://drive.google.com/open?id=1jepzi ... Xer3enc6yM
[PS2/PC] Crazy Frog Racer 2 - .PC files
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: [PS2/PC] Crazy Frog Racer 2 - .PC files
The files are compressed with lzss so the first step is decompressing them:
The decompressed file has a "DLWM" magic at offset 12 but I don't know if it's an archive or something containing models or other information (levels?)
Code: Select all
comtype lzss0
get ZSIZE long
get SIZE long
savepos OFFSET
get NAME basename
clog NAME OFFSET ZSIZE SIZE
The decompressed file has a "DLWM" magic at offset 12 but I don't know if it's an archive or something containing models or other information (levels?)