Nicktoons Racing .wad

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
lemurboy12
Posts: 265
Joined: Fri Oct 17, 2014 2:57 am

Nicktoons Racing .wad

Post by lemurboy12 »

puggsoy
Posts: 161
Joined: Sat Dec 13, 2014 1:01 am

Re: Nicktoons Racing .wad

Post by puggsoy »

A bit of a weird format, but once I found the values I needed it was pretty easy to make a script. Enjoy :)

Code: Select all

# Nicktoons Racing .wad
#
# Written by puggsoy
# script for QuickBMS http://quickbms.aluigi.org

get FILES long
goto 0x10C

for i = 0 < FILES
   get SIZE long
   get OFFSET long
   getdstring NAME 0x14
   
   log NAME OFFSET SIZE
   
   savepos CURRPOS
   math CURRPOS += 0x24
   goto CURRPOS
next i