The rules have been updated, read them now: Rules!
The Original Forum. Game archives, full of resources. How to open them? Get help here.
-
chrrox
- Moderator
- Posts: 2585
- Joined: Sun May 18, 2008 3:01 pm
- Has thanked: 57 times
- Been thanked: 1329 times
Post
by chrrox » Sun Oct 21, 2018 11:09 pm
game site
http://miku.qq.com/
quickbms script to extract all unity files from game without names.
They load fine in unity studio.
File table looks xored.
Code: Select all
get ARCHIVE_SIZE asize
math i = 0
endian big
for OFFSET = 0 != ARCHIVE_SIZE
findloc OFFSET binary "\x55\x6E\x69\x74\x79\x46\x53\x00"
goto OFFSET
getdstring NULL 0x1E
get ZSIZE long
string NAME p "%08x.unity3d" i
log NAME OFFSET ZSIZE
math OFFSET + ZSIZE
goto OFFSET
next i
-
Hoshi
- beginner
- Posts: 22
- Joined: Tue Dec 27, 2016 6:40 pm
- Has thanked: 1 time
- Been thanked: 1 time
Post
by Hoshi » Mon Oct 29, 2018 6:15 am
Thanks so much!
I hope it has better name than random number for file name
It's really hard to sort thing
-
chrrox
- Moderator
- Posts: 2585
- Joined: Sun May 18, 2008 3:01 pm
- Has thanked: 57 times
- Been thanked: 1329 times
Post
by chrrox » Mon Oct 29, 2018 12:23 pm
Use the load folder option in unity studio that will show model names.
you can then right click on the model and say show original file to find the files you want.
-
Hoshi
- beginner
- Posts: 22
- Joined: Tue Dec 27, 2016 6:40 pm
- Has thanked: 1 time
- Been thanked: 1 time
Post
by Hoshi » Mon Oct 29, 2018 6:56 pm
Yeah that's wut i'm doing from the start
But it's take to long to read the whole folder
Even though u just looking for few mesh
I just stick to this method if there none other method