Page 1 of 1

Request: Tanks Evolution (PC game)

Posted: Fri May 15, 2009 3:28 am
by songge
I very like the game -- Tanks Evolution, I want to develop a game use its game resource,
Could you add support to Tanks Evolution, which is a 2d pc game.

I find there are many formats file in the game, such as .rwg .wdt .pak.
Thank you!

Re: Request: Tanks Evolution (PC game)

Posted: Fri May 15, 2009 3:53 am
by songge
The file is too big, 10 MB, and I can not upload it. Sorry, but the game is very famous.
I need your help.

Re: Request: Tanks Evolution (PC game)

Posted: Fri May 15, 2009 1:05 pm
by Mr.Mouse
Please read the request rules. if you have a link to a dowloadable demo of the game, or you have snippets (use the Fillecutter) you can upload those. Thanks.

Re: Request: Tanks Evolution (PC game)

Posted: Fri May 15, 2009 2:58 pm
by aluigi
note that the filenames are guessed by me without deeper reserarch, just a quick look at them so some of them could be different than their real name:

Code: Select all

# Tanks Evolution (experimental filenames)
# script for QuickBMS http://aluigi.org/papers.htm#quickbms

get FILES long
for i = 0 < FILES
    getdstring NAME 100
    get SIZE long
    get OFFSET long

    strlen NAMELEN NAME
    for j = 0 < NAMELEN
        getvarchr BYTE NAME j
        math BYTE -= 0x23
        if BYTE == 0x0e
            set BYTE byte 0x2e
        endif
        if BYTE == 0x0f
            set BYTE byte 0x5c
        endif
        if BYTE == 0x3f
            putvarchr NAME j 0x5f
        else
            if BYTE >= 0x10
                if BYTE <= 0x1f
                    math BYTE -= 0x10
                    math BYTE += 0x30
                endif
            endif
            putvarchr NAME j BYTE
        endif
   next j

   log NAME OFFSET SIZE
next i
p.s.: isn't this section wrong for this type of request?

Re: Request: Tanks Evolution (PC game)

Posted: Sat May 16, 2009 8:18 pm
by songge
Hi, below is the demo download link:

http://www.shabugames.com/genres/Shooti ... ution.html

Thank you very much :)
Waiting for your answer.