American Girl: Kit Msyerty Challenge Nintendo DS (filesystem.pak)

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

American Girl: Kit Msyerty Challenge Nintendo DS (filesystem.pak)

Post by Puterboy1 »

I think this contains all the models, sounds and textures: https://mega.nz/#!vDZzAIQA!tRL_Vvx7212u ... xHmYX_vjzU
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: American Girl: Kit Msyerty Challenge Nintendo DS (filesystem.pak)

Post by aluigi »

I don't know why the decompression doesn't work.
I leave the script for testing:

Code: Select all

comtype oodle
get FILES long
for i = 0 < FILES
    get NAME_CRC long
    get OFFSET long
    get SIZE long
    get ZIP long

    savepos TMP
    goto OFFSET
    get NEXT_OFF long
    get ZIP long
    get SIZE long
    get NAME_CRC long
    savepos OFFSET
    goto TMP

    if ZIP == 0
        log "" OFFSET SIZE
    else
        xmath ZSIZE "NEXT_OFF - OFFSET"
        clog "" OFFSET ZSIZE SIZE
    endif
next i