The Original Forum. Game archives, full of resources. How to open them? Get help here.
-
dj082502
- mega-veteran

- Posts: 202
- Joined: Wed Oct 13, 2010 3:47 am
- Has thanked: 37 times
- Been thanked: 21 times
Post
by dj082502 » Sun Mar 20, 2011 3:55 am
Hi,
I really want to know how to extract .mb files from MSG Encounters in Space PS2.
First 8 bytes header "MB12CDVD"

Here is the sample cut file of game.mb.
delete
Last edited by
dj082502 on Fri Apr 13, 2012 6:49 pm, edited 1 time in total.
-
dj082502
- mega-veteran

- Posts: 202
- Joined: Wed Oct 13, 2010 3:47 am
- Has thanked: 37 times
- Been thanked: 21 times
Post
by dj082502 » Sun Mar 20, 2011 10:48 am
I've tried.
The two files are much alike, but they do have differences.
-
aluigi
- VVIP member

- Posts: 1917
- Joined: Thu Dec 08, 2005 12:26 pm
- Location: www.ZENHAX.com
- Has thanked: 4 times
- Been thanked: 650 times
-
Contact:
Post
by aluigi » Sun Mar 20, 2011 11:17 am
script for quickbms:
Code: Select all
getdstring SIGN 8
get FILES long
get BASE_OFF long
for i = 0 < FILES
get OFFSET long
getdstring NAME 0x20
if OFFSET == -1
get OFFSET long
math OFFSET *= 0x800
math OFFSET += BASE_OFF
else
get DUMMY long
get DUMMY long
set BASE_OFF long OFFSET
endif
get SIZE long
log NAME OFFSET SIZE
next i
-
dj082502
- mega-veteran

- Posts: 202
- Joined: Wed Oct 13, 2010 3:47 am
- Has thanked: 37 times
- Been thanked: 21 times
Post
by dj082502 » Sun Mar 20, 2011 1:07 pm
aluigi wrote:script for quickbms:
Code: Select all
getdstring SIGN 8
get FILES long
get BASE_OFF long
for i = 0 < FILES
get OFFSET long
getdstring NAME 0x20
if OFFSET == -1
get OFFSET long
math OFFSET *= 0x800
math OFFSET += BASE_OFF
else
get DUMMY long
get DUMMY long
set BASE_OFF long OFFSET
endif
get SIZE long
log NAME OFFSET SIZE
next i
Thanks. You've been very helpful.
-
Eradicon
- beginner
- Posts: 27
- Joined: Thu Feb 10, 2011 6:20 pm
Post
by Eradicon » Sun Oct 27, 2013 4:20 am
I've been trying to get the video files from the video game Gundam SEED Never Ending Tomorrow, the script works on it's .mb files, but it's not giving me the files I need. Is there any script identical to it that can let it work properly?