Wizorb (content.pak...*.xnb?)

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
Doctor Loboto
Posts: 376
Joined: Sun May 31, 2015 2:23 am

Wizorb (content.pak...*.xnb?)

Post by Doctor Loboto »

Hey there. I like this weird lil game, and was hoping to get the graphics from it. Almost everything is contained in this one big 'content.pak'. From the few NOT within this pak, I'm assuming the contained files will be xnb or something similar.

https://www.dropbox.com/s/cpzzy9ykv68hkrj/content.pak?dl=0
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Wizorb (content.pak...*.xnb?)

Post by aluigi »

Code: Select all

get PAK_SIZE asize
for OFFSET = 0 != PAK_SIZE
    get SIZE long
    get NAMESZ short
    getdstring NAME NAMESZ
    savepos OFFSET
    log NAME OFFSET SIZE
    math OFFSET + SIZE
    goto OFFSET
next