Hi everyone. I'm Freight, nice to meet you all.
I open this thread to ask for help with extract voice file of dai-3-ji super robot taisen Z(PS3).
This voice file seems an aggregate of .hca file, and this file is consutituted recurrence of the header "HCA".
Is there any script for quickbms to extract .hca file from this .xfbin file? Please give me some advise for this problem.
Dai-3-ji super robot taisen Z voice file
Dai-3-ji super robot taisen Z voice file
You do not have the required permissions to view the files attached to this post.
Re: Dai-3-ji super robot taisen Z voice file
Thanks lot!
Now I got .hca file by this cord.
and then, CriAtomplayer work.
Now I got .hca file by this cord.
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 "HCA" 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

