Users browsing this thread: 1 Guest(s)
Hey does anyone know how to get all the audio possible from this ISO?
#7
The ASF Files can be unpacked using this script:
Code:
# AFS archives (used on some Xbox games) (script 0.1.2)
# script for QuickBMS http://quickbms.aluigi.org

idstring "AFS"
get DUMMY byte  # it's usually 0 but in some files (MULTSPQ2.AFS) it may be different
get FILES long
savepos INFO_OFF

math NAME_OFF = FILES
math NAME_OFF *= 8
math NAME_OFF += INFO_OFF
goto NAME_OFF
get NAME_OFF long
goto INFO_OFF

for i = 0 < FILES
    get OFFSET long
    get SIZE long

    if NAME_OFF == 0
    if i == 0
        savepos TMP
        goto OFFSET
        goto -8 0 SEEK_CUR
        get NAME_OFF long
        get NAME_SIZE long
        goto TMP
    endif
    endif

    if NAME_OFF == 0
        set NAME string ""
    else
        savepos INFO_OFF
        goto NAME_OFF
        getdstring NAME 32
        getdstring DUMMY 16
        savepos NAME_OFF
        goto INFO_OFF
    endif

    log NAME OFFSET SIZE
next i
However, I'm uncertain what these files produced are.
Reply
Thanked by:


Messages In This Thread
RE: Hey does anyone know how to get all the audio possible from this ISO? - by Pingus! - 07-25-2017, 03:41 PM

Forum Jump: