Page 1 of 1

Dai-2-Ji Super Robot Taisen OG .pack file

Posted: Tue Jan 08, 2013 12:21 pm
by freight
Hi everyone. I'm Freight, nice to meet you all.
I open this thread to ask for help with extract voice file of Dai-2-Ji Super Robot Taisen OG(PS3).

This voice file seems an aggregate of .msf file, and this file is consutituted recurrence of the header "WMSF" and "MSFC".
Is there any way to extract .msf file from this .pack file? Please give me some advise for this problem.

Re: Dai-2-Ji Super Robot Taisen OG .pack file

Posted: Tue Jan 08, 2013 2:26 pm
by freight
Now I found this cord work

Code: Select all

get BNAME basename
string BNAME += "_"
set OFFSET 0
set SEARCH OFFSET
math SEARCH += 3
set QUIT 0
for i = 1
   goto SEARCH
   FindLoc SIZE string "MSF" 0 ""
   if SIZE == ""
      get SIZE asize
      set QUIT 1
   endif
   math SIZE -= OFFSET
   set NAME BNAME
   string NAME += i
   log NAME OFFSET SIZE
   if QUIT != 1
      math OFFSET += SIZE
      set SEARCH OFFSET
      math SEARCH += 8 # needs to be the lengh of the search string
   else
      cleanexit
   endif
next i
And then, I got some file with header "MSFC".
Is there any script for quickbms to decode this msf file to playable file?