The Powerpuff Girls Gamesville RFD/RFH

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

The Powerpuff Girls Gamesville RFD/RFH

Post by lemurboy12 »

The RFD files are archives while the RFH files contain filenames.
h3x3r
Posts: 165
Joined: Wed Jun 01, 2016 5:53 pm

Re: The Powerpuff Girls Gamesville RFD/RFH

Post by h3x3r »

Simple script for unpack only. It throw error on the end but it's ok. All files are unpacked. Not sure about compression.

Code: Select all

####################################
open FDDE "RFH" 0
open FDDE "RFD" 1
get FNAME BASENAME

For
   get STRLEN long
   get FILETYPE long
   get COMPRESSION long
   get SIZE long
   get DSIZE long
   get OFFSET long
   getDString NAME STRLEN
   string NAME p "%s/%s" FNAME NAME
   log NAME OFFSET SIZE 1
Next