Skip to content
View in the app

A better way to browse. Learn more.

ResHax

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
Help us keep the site running.

Namco Museum: 50th Anniversary - NAMCO50.VOL

Featured Replies

  • Author
  • Localization

phantaton, posted Thu Feb 25, 2021 12:55 am (62475)


Uses a very similar format as the archive mentioned here https://zenhax.com/viewtopic.php?t=1272 but the script provided in the thread outputs incorrect data and errors out when I try to use it on this one.
  • Author
  • Localization

BloodRaynare, posted Fri Feb 26, 2021 10:32 am (62500)


Here's a script to extract your variant of the VOL file

Code:
## Namco Museum 50th Anniversary (PS2) - NAMCO50.VOL
## Script by BloodRaynare
## For use with QuickBMS: http://aluigi.altervista.org/quickbms.htm

idstring "PVOL"
get UNK long
get FILES long
get DATASTART long
for i = 0 < FILES
   get OFFSET long
   get SIZE long
   get FID long
   putarray 0 i OFFSET
   putarray 1 i SIZE
next i

savepos CURRPOSNAME
get REAL_FILES long

for i = 0 < REAL_FILES
   get NAME_OFF long
   math NAME_OFF CURRPOSNAME
   savepos CURRPOS
   goto NAME_OFF
   get NAME string
   putarray 2 i NAME
   goto CURRPOS
next i

sortarray 3 0

math TMP = 34

for i = 0 < FILES
   getarray OFFSET 0 i
   getarray SIZE   1 i
   if i >= 42
      getarray NAME   2 TMP
      math TMP 1
   elif i >= 34
      getarray NAME   2 33
   else
      getarray NAME   2 i
   endif
   log NAME OFFSET SIZE
next i


Quite hacky, but it should work.
The problem is the format is a bit weird. The filecount is 44, but the filename entries is only 36. Also, the reason why the extracted files is incorrect is because the files were in certain orders (That's why sortarray is used).
There's a duplicate entries for vssver.scc (If QuickBMS says the file exists, you can either rename it automatically or just overwrite it). It's likely that the VOL has a directory structure or something, which explains the duplicate entries.
  • Author
  • Localization

phantaton, posted Fri Feb 26, 2021 1:09 pm (62503)


Worked like a charm. Thanks!
Guest
This topic is now closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.