I need help decompressing the PS2 Eureka Seven .mb file.
Code: Select all
MB13CDVDy...e?...@..ARCCeureka_us_cpy.ico...................bc.
If you want more samples i can upload more.
Merry Christmas in advance.
Code: Select all
MB13CDVDy...e?...@..ARCCeureka_us_cpy.ico...................bc.
Code: Select all
# Eureka 7 Vol. 1 New Wave / Eureka 7 Vol. 2 New Vision
# MB format unpacker script for Quickbms
# Made by XeroNazoBlaze
ImpType Standard ;
Idstring "MB13CDVD" ;
Get NOF long ;
Get NULL long ;
Get FFO long ;
Get NULL long ;
For I = 0 < NOF ;
Getdstring NAME 0x20 ;
Get FOFFSET long ;
Get FSIZE long ;
Get NULL long ;
Get NULL long ;
Math FOFFSET *= 2048 ;
Math FOFFSET += FFO ;
Log NAME FOFFSET FSIZE ;
Next I
Code: Select all
# Eureka 7 Vol. 1 New Wave / Eureka 7 Vol. 2 New Vision
# FPK format unpacker script for Quickbms
# Made by XeroNazoBlaze
ImpType Standard ;
Idstring "FPK" ;
Get NULL byte ;
Get NOF long ;
Get NULL long ;
Get FFO long ;
For I = 0 < NOF ;
Getdstring NAME 0x40 ;
Get FOFFSET long ;
Get NULL long ;
Get FSIZE long ;
Get NULL long ;
Math FOFFSET += FFO ;
Log NAME FOFFSET FSIZE ;
Next I
Code: Select all
# Game: MOBILE SUIT GUNDAM Lost War Chronicles (PS2)
# by Fatduck Nov 09
# script for QuickBMS http://aluigi.org/papers.htm#quickbms
idstring "MB11CDVD"
get NUMRES long
get IDXTBLEND long #no use
get OFSBASERES long
get IDXTBLHEADER long #no use
for i = 0 < NUMRES
getdstring RESNAME 0x20
get OFSRES long
math OFSRES *= 0x800
math OFSRES += OFSBASERES
get SIZERES long
get UNKNOWN long
log RESNAME OFSRES SIZERES
next i