Page 1 of 1

(X360)Strike Witches

Posted: Sat Nov 26, 2011 7:26 am
by alon
Hello!
I used "ggxdiv.exe" to unpacked bin[GGXArchiver1.00] files in Strike Witches Xbox360.
*.GMA \?
*.GMM \?
*.GMO \model?
*.DDS \texture
*.XMA \sound

I want to converter GMO to obj, please.
Here is sample files:
delete

Thanks in advance!

Re: (X360)Strike Witches

Posted: Sat Nov 26, 2011 7:59 am
by finale00
Everything is encrypted :(

Re: (X360)Strike Witches

Posted: Sat Nov 26, 2011 3:35 pm
by chrrox
I dont think its encrypted i think the extractor he used is wrong
if you look at the original bin file there are readable strings in the file sections
so just need to get what type of compression they used.

Re: (X360)Strike Witches

Posted: Sat Nov 26, 2011 3:49 pm
by alon
here are original bin files & xex file
delete

Re: (X360)Strike Witches

Posted: Sat Nov 26, 2011 7:14 pm
by chrrox
Quickbms script
Image
getdstring MAGIC 0x10
get FILES long
goto 0x20
comtype BPE
for i = 0 < files
getdstring NAME 0x20
putarray 0 i NAME
next i
savepos baseoff
set tmp files
math tmp * 0x18
math baseoff + tmp
for i = 0 < files
get NID long
get ONE long
get size long
get zsize long
get COMP long
get offset long
math offset + baseoff
getarray NAME 0 NID
if COMP == 1
clog name offset zsize size
else
log name offset size
endif
next i

Re: (X360)Strike Witches

Posted: Sun Nov 27, 2011 9:32 pm
by finale00
How did you figure out the compression type?

@OP, I'm guessing you deleted the file because all you needed was the decryption script?

Re: (X360)Strike Witches

Posted: Mon Nov 28, 2011 2:25 am
by chrrox
its super easy with luigi's compscan and bms script.
all you need is the raw file part with the uncompressed size and it will try every compression quickbms knows for you.
then you just look at the output files to see what one decompressed correctly.
i chose a dds file because i know what that should look like.

Re: (X360)Strike Witches

Posted: Mon Nov 28, 2011 4:43 am
by alon
chrrox//
I've said it before and I'll say it again, thanks for all your help.

finale00//
replace links

Re: (X360)Strike Witches

Posted: Mon Nov 28, 2011 5:52 am
by chrrox
tutorial for noesis here on this format
viewtopic.php?f=29&t=7760

Re: (X360)Strike Witches

Posted: Sun Dec 11, 2011 12:05 am
by aluigi
to anyone interested in the comscan method:
http://aluigi.org/quickbms/comtype_scan.htm