Magical Battle Arena (*.chr *.gdp)

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

Magical Battle Arena (*.chr *.gdp)

Post by Doctor Loboto »

I have found literally nothing on this file format. The one place I saw mention of it, it was completely useless and unhelpful. Can anyone figure out how to extract this stuff?

https://www.dropbox.com/s/hevmfle2u20r6tt/Data.zip?dl=0
Acewell
Posts: 706
Joined: Fri Aug 08, 2014 1:06 am

Re: Magical Battle Arena (*.chr *.gdp)

Post by Acewell »

this bms script will extract from the gdp sample :D

Code: Select all

# script for QuickBMS http://aluigi.altervista.org/quickbms.htm

get FOLDER basename
get FILES long
for i = 0 < FILES
    getdstring NAME 0x104
    get SIZE long
    get OFFSET long
    string NAME p "%s\%s" FOLDER NAME
    log NAME OFFSET SIZE
next i

i don't know about the chr samples, they look like a resource index for something :)