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.

Dead or Alive (PSX) PS_DOA.BIN Archive

Featured Replies

  • Author
  • Localization

BloodRaynare, posted Tue Dec 07, 2021 12:43 pm (68007)


Well, hello there me from the past, After more than 4 years, I finally figured it out.
Turns out, the offset field are stored in MM:SS:FF format. And here's the extraction scripts:

Code:
## Dead or Alive (PSX) - PS_DOA.BIN
## Extraction scripts by BloodRaynare

get FNAME basename

for i = 0
   get SIZE long
   # Offset fields uses MM:SS:FF notation
   get MM byte
   get SS byte
   get FF byte
   get ZERO byte
   if SIZE == 0 && MM == 0 && SS == 0 && FF == 0
      break
   endif
   putarray 0 i SIZE
   putarray 1 i MM
   putarray 2 i SS
   putarray 3 i FF
next i
math FILES = i

for i = 0 < FILES
   getarray SIZE 0 i
   getarray MM   1 i
   getarray SS   2 i
   getarray FF   3 i
   string TMP1 p "%2x" MM
   string TMP2 p "%2x" SS
   string TMP3 p "%2x" FF
   math TMP1 * 60
   math TMP2 TMP1
   math TMP2 * 75
   xmath OFFSET "TMP2 TMP3 2"
   math OFFSET * 2048
   string NAME p "%s_i." FNAME i
   log NAME OFFSET SIZE
next i
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.