Important information: this site is currently scheduled to go offline indefinitely by end of the year.

Old Disney games tool

Programs that are related to this or that game.
Post Reply
joaofeu
ultra-n00b
Posts: 7
Joined: Sat May 26, 2012 5:54 pm

Old Disney games tool

Post by joaofeu »

Hi. I've searched everywhere and I can't find a tool to extract some Disney Interactive pkg files (one per game).
These are old games. Here are the ones whose files I want to extract:
102 Dalmatians: Puppies To The Rescue
Extremely Goofy Skateboarding

I don't know how to make a decompiler, I would like to.
If you can give me some help extracting these files and give me a good tutorial of how to make a decompiler I would appreciate.
Mr.Mouse
Site Admin
Posts: 4073
Joined: Wed Jan 15, 2003 6:45 pm
Location: Dungeons of Doom
Has thanked: 450 times
Been thanked: 682 times
Contact:

Re: Old Disney games tool

Post by Mr.Mouse »

Then we need examples.
joaofeu
ultra-n00b
Posts: 7
Joined: Sat May 26, 2012 5:54 pm

Re: Old Disney games tool

Post by joaofeu »

Here you have a file.
This is a 102 Dalmatians: Puppies To The Rescue's .PKG file.
https://mega.nz/#!QwlT1CDT!1RhYXa4HFwcc ... Tod36-c81o
Mr.Mouse
Site Admin
Posts: 4073
Joined: Wed Jan 15, 2003 6:45 pm
Location: Dungeons of Doom
Has thanked: 450 times
Been thanked: 682 times
Contact:

Re: Old Disney games tool

Post by Mr.Mouse »

Stuff can be extracted quite simply, question remains: what kind of compression is used on some of the content.
joaofeu
ultra-n00b
Posts: 7
Joined: Sat May 26, 2012 5:54 pm

Re: Old Disney games tool

Post by joaofeu »

I really don't know. :)
Does anyone know how to help here?
Anyway can you show me the extracted files?
masterX244
beginner
Posts: 31
Joined: Mon Aug 16, 2010 5:48 pm
Has thanked: 1 time
Been thanked: 8 times

Re: Old Disney games tool

Post by masterX244 »

Not sure if i checked the same game atm since in Germany it might be called a bit different but for me the *.ase files inside the PKG file look like Text based files for me. haven't found binary in weird formats while quickly scrolling over the files inside
joaofeu
ultra-n00b
Posts: 7
Joined: Sat May 26, 2012 5:54 pm

Re: Old Disney games tool

Post by joaofeu »

Sorry, but I don't even know how to get the files inside the .PGK.
masterX244
beginner
Posts: 31
Joined: Mon Aug 16, 2010 5:48 pm
Has thanked: 1 time
Been thanked: 8 times

Re: Old Disney games tool

Post by masterX244 »

joaofeu wrote:Sorry, but I don't even know how to get the files inside the .PGK.
rename it to zip and the standard tools for those should work. the game is from the era where people were easily fooled by wrong extensions so hiding zips that way worked
joaofeu
ultra-n00b
Posts: 7
Joined: Sat May 26, 2012 5:54 pm

Re: Old Disney games tool

Post by joaofeu »

masterX244 wrote:
joaofeu wrote:Sorry, but I don't even know how to get the files inside the .PGK.
rename it to zip and the standard tools for those should work. the game is from the era where people were easily fooled by wrong extensions so hiding zips that way worked
Thank you, but, unfortunately, that didn't solve the problem :(
masterX244
beginner
Posts: 31
Joined: Mon Aug 16, 2010 5:48 pm
Has thanked: 1 time
Been thanked: 8 times

Re: Old Disney games tool

Post by masterX244 »

joaofeu wrote:
masterX244 wrote:
joaofeu wrote:Sorry, but I don't even know how to get the files inside the .PGK.
rename it to zip and the standard tools for those should work. the game is from the era where people were easily fooled by wrong extensions so hiding zips that way worked
Thank you, but, unfortunately, that didn't solve the problem :(
damn... smells like there might be different versions of the game around... you got a hex-editor or something where you can see the binary content of the file? seeing the beginning of the file could get me on track
joaofeu
ultra-n00b
Posts: 7
Joined: Sat May 26, 2012 5:54 pm

Re: Old Disney games tool

Post by joaofeu »

Here's the beginning of the file I've got from opening it with an hex-editor:

00 08 00 00 DC 6C 06 00 00 78 06 00 40 16 00 00
00 90 06 00 E4 0B 00 00 00 A0 06 00 04 C0 12 00
00 68 19 00 04 C0 12 00 00 30 2C 00 04 C0 12 00
00 F8 3E 00 04 C0 12 00 00 C0 51 00 04 C0 12 00
00 88 64 00 04 C0 12 00 00 50 77 00 04 C0 12 00
00 18 8A 00 04 C0 12 00 00 E0 9C 00 04 C0 12 00
00 A8 AF 00 04 C0 12 00 00 70 C2 00 04 C0 12 00
00 38 D5 00 04 C0 12 00 00 00 E8 00 04 C0 12 00
00 C8 FA 00 04 C0 12 00 00 90 0D 01 04 C0 12 00
00 58 20 01 04 C0 12 00 00 20 33 01 04 C0 12 00


Image
Acewell
VIP member
VIP member
Posts: 1330
Joined: Wed Nov 05, 2008 12:16 pm
Has thanked: 2710 times
Been thanked: 884 times

Re: Old Disney games tool

Post by Acewell »

http://zenhax.com/viewtopic.php?p=8666#p8666

aluigi made a QuickBMS script for 102 Dalmatians pkg

:D
Mr.Mouse
Site Admin
Posts: 4073
Joined: Wed Jan 15, 2003 6:45 pm
Location: Dungeons of Doom
Has thanked: 450 times
Been thanked: 682 times
Contact:

Re: Old Disney games tool

Post by Mr.Mouse »

:mock:

Code: Select all

# 102 Dalmatians

for
    get OFFSET long
    get SIZE long
    if OFFSET == 0
        break
    endif
    if OFFSET != 0xffffffff
        math OFFSET + 4 # useless TYPE
        math SIZE   - 4
        log "" OFFSET SIZE
    endif
next
Yes, that was the easy part. As I said: Stuff can be extracted quite simply, question remains: what kind of compression is used on some of the content. So the problem is the encryption/compression.

:]
joaofeu
ultra-n00b
Posts: 7
Joined: Sat May 26, 2012 5:54 pm

Re: Old Disney games tool

Post by joaofeu »

AceWell wrote:http://zenhax.com/viewtopic.php?p=8666#p8666

aluigi made a QuickBMS script for 102 Dalmatians pkg

:D
Thank you!! I didn't know about that forum. :D

But now I can't read the files inside it. :(
Mr.Mouse wrote::Yes, that was the easy part. As I said: Stuff can be extracted quite simply, question remains: what kind of compression is used on some of the content. So the problem is the encryption/compression.

:]
Does anyone know how to help here?
Post Reply