Amazing aventures forgoten dinasty

The Original Forum. Game archives, full of resources. How to open them? Get help here.
Post Reply
danny
beginner
Posts: 22
Joined: Mon Apr 11, 2011 11:16 am

Amazing aventures forgoten dinasty

Post by danny »

Hello friends i need the code to .z file.
i need the code to decompress, Thanks


http://www.megaupload.com/?d=FE6KH137
Last edited by danny on Sun May 01, 2011 5:42 pm, edited 2 times in total.
User avatar
aluigi
VVIP member
VVIP member
Posts: 1916
Joined: Thu Dec 08, 2005 12:26 pm
Location: www.ZENHAX.com
Has thanked: 4 times
Been thanked: 654 times
Contact:

Re: I need the code for .z file

Post by aluigi »

*edit* the name of the game is Amazing Adventures The Forgotten Dynasty
User avatar
aluigi
VVIP member
VVIP member
Posts: 1916
Joined: Thu Dec 08, 2005 12:26 pm
Location: www.ZENHAX.com
Has thanked: 4 times
Been thanked: 654 times
Contact:

Re: I need the code for .z file

Post by aluigi »

script for quickbms:

Code: Select all

# Amazing Adventures The Forgotten Dynasty
# script for QuickBMS http://aluigi.org/papers.htm#quickbms

comtype lzma86head
get FILES long
for EXTRACT = 0 < 2
    goto 4
    for i = 0 < FILES
        get OFFSET long
        get XSIZE long
        get SIZE long
        get ZSIZE long
        get DUMMY longlong
        get NAMESZ long
        math NAMESZ *= 2
        getdstring NAME NAMESZ
        set NAME unicode NAME
        padding 4
        if EXTRACT != 0
            math OFFSET += BASE_OFF
            if SIZE == ZSIZE
                log NAME OFFSET SIZE
            else
                clog NAME OFFSET ZSIZE SIZE
            endif
        endif
    next i
    savepos BASE_OFF
next EXTRACT
Post Reply