Important information: this site is currently scheduled to go offline indefinitely by end of the year.

Madden 2010 *.AST

The Original Forum. Game archives, full of resources. How to open them? Get help here.
Post Reply
brendan19
ultra-veteran
ultra-veteran
Posts: 389
Joined: Thu Aug 12, 2010 8:15 am
Has thanked: 54 times
Been thanked: 93 times

Madden 2010 *.AST

Post by brendan19 »

The contents of this post was deleted because of possible forum rules violation.
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: 664 times
Contact:

Re: Madden 2010 *.AST

Post by aluigi »

I don't know if it's an archive or something like a video plus an index.
the video probably starts from offset 0x1f590 or similar.
brendan19
ultra-veteran
ultra-veteran
Posts: 389
Joined: Thu Aug 12, 2010 8:15 am
Has thanked: 54 times
Been thanked: 93 times

Re: Madden 2010 *.AST

Post by brendan19 »

The contents of this post was deleted because of possible forum rules violation.
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: 664 times
Contact:

Re: Madden 2010 *.AST

Post by aluigi »

good, job done:

Code: Select all

# Madden 2010
# script for QuickBMS http://quickbms.aluigi.org

idstring "BGFA"
get DUMMY long
get DUMMY long
get FILES long
get OFFSET long
goto OFFSET
get NAME string
for i = 0 < FILES
    get DUMMY long
    get DUMMY long
    get OFFSET long
    get ZSIZE long
    get SIZE threebyte
    get DUMMY byte
    get DUMMY byte
    math OFFSET *= 0x10
    if SIZE == 0
        log "" OFFSET ZSIZE
    else
        math SIZE += ZSIZE
        clog "" OFFSET ZSIZE SIZE
    endif
next i
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: 664 times
Contact:

Re: Madden 2010 *.AST

Post by aluigi »

*edit* the script was perfect :)

Code: Select all

# NBA Jam on Fire
# script for QuickBMS http://quickbms.aluigi.org

idstring "BGFA"
getdstring VER 4
get DUMMY long
get FILES long
get OFFSET long
goto OFFSET
getdstring DUMMY 12
for i = 0 < FILES
    getdstring DUMMY 10
    get OFFSET long
    get ZSIZE threebyte
    get SIZE threebyte
    getdstring NAME 0x2a
    math OFFSET *= 8
    if SIZE == 0
        log NAME OFFSET ZSIZE
    else
        math SIZE += ZSIZE
        clog NAME OFFSET ZSIZE SIZE
    endif
next i
Last edited by aluigi on Fri May 18, 2012 6:09 pm, edited 1 time in total.
sdot
ultra-n00b
Posts: 3
Joined: Thu Apr 19, 2012 12:30 am
Has thanked: 1 time

Re: Madden 2010 *.AST

Post by sdot »

Got it figured out aluigi, the archive we were working with was damaged. Tried a new dump of the game and the script worked like a charm. So change your script to "does work extremely well". Thanks, you're awesome. 8)
Post Reply