The VG Resource
Sonic Rush Adventure - Printable Version

+- The VG Resource (https://www.vg-resource.com)
+-- Forum: The Resources (https://www.vg-resource.com/forum-109.html)
+--- Forum: The Models Resource (https://www.vg-resource.com/forum-111.html)
+---- Forum: Ripping Help (https://www.vg-resource.com/forum-115.html)
+---- Thread: Sonic Rush Adventure (/thread-29492.html)



Sonic Rush Adventure - Carpaccio - 07-04-2016

Hey all. I found some weird archives in Sonic Rush Adventure that  apparently holds the models related to the Final Boss, the Egg Wizard. Can anyone help me extract it?

Dropbox Link


RE: Sonic Rush Adventure - Struggleton! - 07-07-2016

Code:
comtype NitroSDK
idstring "BB"
get NULL short
get FCOUNT long
for i = 0 < FCOUNT
    get OFFSET long
    get SIZE long
    savepos CURINDEX
    goto OFFSET
    get ID byte
    if ID == 0x10
        get ZSIZE long
        clog "" OFFSET SIZE ZSIZE
    else
        log "" OFFSET SIZE
    endif
    goto CURINDEX
next i

Dumps all the files from the archive you posted. Was a nice little exercise Tongue


RE: Sonic Rush Adventure - Carpaccio - 07-08-2016

Thank you very much! Works like a charm! Perfect!