I'm trying to explore the XBLA version of Zuma on the original Xbox. I recently acquired the game data from extracting the XBE but the game's content appears to be in an 13MB archive called XBEFILES. It isn't an XPR like those two other ports and it doesn't appear to use any form of compression but is it possible for a script to be written to extract the content? Thanks so much.
https://www.dropbox.com/s/7iu7dzdoim5xoea
Zuma (Original Xbox, XBLA) XBEFILES content archive
-
- Posts: 865
- Joined: Fri Apr 20, 2018 12:41 am
-
- Posts: 1383
- Joined: Sat Aug 09, 2014 2:34 pm
Re: Zuma (Original Xbox, XBLA) XBEFILES content archive
Code: Select all
# XBEFILES
# script for QuickBMS http://quickbms.aluigi.org
get FILES long
for i = 0 < FILES
get NAME_OFF long
get SIZE long
get OFFSET long
savepos TEMP
goto NAME_OFF
get NAME string
log NAME OFFSET SIZE
goto TEMP
next i
-
- Posts: 865
- Joined: Fri Apr 20, 2018 12:41 am
Re: Zuma (Original Xbox, XBLA) XBEFILES content archive
Thanks for the quick response!