Dragon Ball Z PC Game

Textures, recreate headers, conversions, algorithms and parsing of image files
Aggramundis
Posts: 8
Joined: Thu Feb 01, 2018 4:59 pm

Dragon Ball Z PC Game

Post by Aggramundis »

Hi everyone:

I upload the file. This contain all the images to translate:

Basically i need a script to extract this and make a full italian translation.

Thanks and waiting impatiently the answer :)

Regards!!!
Last edited by Aggramundis on Sat Mar 09, 2019 11:56 am, edited 2 times in total.
Acewell
Posts: 706
Joined: Fri Aug 08, 2014 1:06 am

Re: Dragon Ball Z "El Gran Torneo" PC Game

Post by Acewell »

this bms script will split all bmp files from the sbd archive. :D

Code: Select all

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

get SBD_SIZE asize
get FOLDER basename
for i
    savepos OFFSET
    goto 0x2 0 seek_cur
    get SIZE long
    string NAME p "%s\%d.bmp" FOLDER i
    log NAME OFFSET SIZE
    math OFFSET + SIZE
    if OFFSET >= SBD_SIZE
        break
    endif
    goto OFFSET
next i
Aggramundis
Posts: 8
Joined: Thu Feb 01, 2018 4:59 pm

Re: Dragon Ball Z PC Game

Post by Aggramundis »

Thanks you man!!! :)