Noob's question [old Chaos Rings]
-
- Posts: 10
- Joined: Mon Nov 19, 2018 3:42 pm
Noob's question [old Chaos Rings]
// I'm new to this and didn't really know much about decompiling stuff //
Is there any "MCT_" script here? ( found nothing in search ) and how does one knows how to write those script?
( I do found the "MDB1" script for Chaos Rings 2,3 but the older Chaos Rings use the "MCT_" )
// sorry if the question seems strange but as I said I really got no idea about decompiling stuff //
Is there any "MCT_" script here? ( found nothing in search ) and how does one knows how to write those script?
( I do found the "MDB1" script for Chaos Rings 2,3 but the older Chaos Rings use the "MCT_" )
// sorry if the question seems strange but as I said I really got no idea about decompiling stuff //
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Noob's question [old Chaos Rings]
zip one of these files and upload it (here or on mega/mediafire/sendspace).
-
- Posts: 10
- Joined: Mon Nov 19, 2018 3:42 pm
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Noob's question [old Chaos Rings]
I meant only the "MCT_" files, not the whole 1Gb obb.
-
- Posts: 10
- Joined: Mon Nov 19, 2018 3:42 pm
Re: Noob's question [old Chaos Rings]
It's .obb file that is locked in that MCT_ format. Like from this post >>https://zenhax.com/viewtopic.php?f=9&t=698&hilit=Chaos+Rings<<, it's .obb but in that MDB1 format in the post.
( I attached a pic of the files opened in hex workshop. I think that'll explain what I wanted to said better than what I just typed :/ )
( I attached a pic of the files opened in hex workshop. I think that'll explain what I wanted to said better than what I just typed :/ )
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Noob's question [old Chaos Rings]
Ah ok it's the whole obb that is MCT_, that wasn't clear from the first post.
Just in case someone doesn't want to download the whole file you can use the following quickbms script on the obb and upload the 2 files it generates:
http://aluigi.org/bms/filecutter.bms
Usually these 2 small files are enough to us for analyzing a format.
Just in case someone doesn't want to download the whole file you can use the following quickbms script on the obb and upload the 2 files it generates:
http://aluigi.org/bms/filecutter.bms
Usually these 2 small files are enough to us for analyzing a format.
-
- Posts: 10
- Joined: Mon Nov 19, 2018 3:42 pm
Re: Noob's question [old Chaos Rings]
Here's that 2 files
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Noob's question [old Chaos Rings]
Basically "MCT_" is not the archive but they are all the files inside the archive.
For example the "MCT_" header is available at offset 0, 0x73752, 0xde78f, 0xdf6ec and so on.
It includes the size of the data but the content of such data doesn't have much sense, like if it's compressed but I don't see what may be the algorithm... maybe it's a custom format of compressed images, I don't know.
Anyway with the following script you can at least dump all the data from the obb archive:
For example the "MCT_" header is available at offset 0, 0x73752, 0xde78f, 0xdf6ec and so on.
It includes the size of the data but the content of such data doesn't have much sense, like if it's compressed but I don't see what may be the algorithm... maybe it's a custom format of compressed images, I don't know.
Anyway with the following script you can at least dump all the data from the obb archive:
Code: Select all
get ARCHIVE_SIZE asize
for OFFSET = 0 != ARCHIVE_SIZE
idstring "MCT_"
get ZERO long
get DUMMY short # 1
get SIZE long
math SIZE - 4
savepos OFFSET
log "" OFFSET SIZE
math OFFSET + SIZE
goto OFFSET
next
-
- Posts: 10
- Joined: Mon Nov 19, 2018 3:42 pm
Re: Noob's question [old Chaos Rings]
somehow it seems to fail midway
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Noob's question [old Chaos Rings]
That's good because it means this is the wrong way to handle this data.
You must have another small file that acts as index file, basically it contains all the information of the files stored in the obb archive.
Do you have any small file there that may contain these information?
You must have another small file that acts as index file, basically it contains all the information of the files stored in the obb archive.
Do you have any small file there that may contain these information?
-
- Posts: 10
- Joined: Mon Nov 19, 2018 3:42 pm
Re: Noob's question [old Chaos Rings]
nope. All it has is that 1gb .obb and an APK file.
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Noob's question [old Chaos Rings]
APK is a zip, the index file may be there.
-
- Posts: 10
- Joined: Mon Nov 19, 2018 3:42 pm
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Noob's question [old Chaos Rings]
I don't see references to the MCT_ files.
Maybe someone else has more ideas.
Maybe someone else has more ideas.
-
- Posts: 75
- Joined: Sun Jan 10, 2021 2:23 pm
Re: Noob's question [old Chaos Rings]
you might have better luck looking in iOS version, since it has all resources unpacked