Hatsune Miku: Dreamy Vocal
Posted: 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.
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