Chaos Rings 3

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
chrrox
Posts: 388
Joined: Thu Aug 07, 2014 10:28 pm

Chaos Rings 3

Post by chrrox »

Here is a script to extract these archives.
Its funny they used the compression in your example.
ImageImage

Code: Select all

#Chaos Rings 3
#quickbms script by chrrox
#http://www.chaosrings.com/3/
comtype doboz
IDSTRING "MDB1"
get COUNT1 short
get COUNT2 short
get FILES long
get BASE long
get ARCHIVE_SIZE long

for i = 0 < COUNT1
   get UNK01 short
   get UNK02 short
   get UNK03 short
   get UNK04 short
   putarray 0 i UNK01
   putarray 1 i UNK02
   putarray 2 i UNK03
   putarray 3 i UNK04
next i

for i = 0 < COUNT2
   getdstring EXT 4
   getdstring NAME 0x3C
   putarray 4 i NAME
   putarray 5 i EXT
next i

for i = 0 < FILES
   get OFFSET long
   math OFFSET += BASE
   get SIZE long
   get ZSIZE long
   putarray 6 i OFFSET
   putarray 7 i SIZE
   putarray 8 i ZSIZE
next i

for i = 0 < COUNT1
   getarray VAR1 1 i
   if VAR1 != 0xFFFF
      getarray NAME 4 i
      getarray EXT 5 i
      if EXT == "img "
          set EXT string "pvr"
      endif
      string NAME += "."
      string NAME += EXT
      getarray OFFSET 6 VAR1
      getarray SIZE   7 VAR1
      getarray ZSIZE  8 VAR1
      if ZSIZE == SIZE
         log NAME OFFSET ZSIZE
      else
         clog NAME OFFSET ZSIZE SIZE
      endif
   endif
next i
CriticalError
Posts: 204
Joined: Thu Aug 14, 2014 8:52 pm

Re: Chaos Rings 3

Post by CriticalError »

this one is for psvita format right?
chrrox
Posts: 388
Joined: Thu Aug 07, 2014 10:28 pm

Re: Chaos Rings 3

Post by chrrox »

Its for ios and android I have no access to the vita files.
The ios and android formats are identical.
CriticalError
Posts: 204
Joined: Thu Aug 14, 2014 8:52 pm

Re: Chaos Rings 3

Post by CriticalError »

chrrox wrote:Its for ios and android I have no access to the vita files.
The ios and android formats are identical.
thanks mate, anyway you study 3D format of this game?
chrrox
Posts: 388
Joined: Thu Aug 07, 2014 10:28 pm

Re: Chaos Rings 3

Post by chrrox »

yes
Image
CriticalError
Posts: 204
Joined: Thu Aug 14, 2014 8:52 pm

Re: Chaos Rings 3

Post by CriticalError »

chrrox wrote:yes
any change to help with that? or maybe if pay for script? really need it and others jobs for you if you agree ofc, I waiting for you.