Extract the bytes file [SkullGirls mobile / Unity]

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
JackDev
Posts: 39
Joined: Tue Dec 26, 2017 6:36 am

Extract the bytes file [SkullGirls mobile / Unity]

Post by JackDev »

Hello everyone, how to extract the bytes file? Here is a sample file, Thanks!
https://www.dropbox.com/s/l91aonz6epoto ... bytes?dl=0
LolHacksRule
Posts: 865
Joined: Fri Apr 20, 2018 12:41 am

Re: Extract the bytes file

Post by LolHacksRule »

What game? It has a header of double...
atom0s
Posts: 250
Joined: Sat Dec 27, 2014 8:49 pm

Re: Extract the bytes file

Post by atom0s »

.bytes files are used by Unity to hold raw data that isn't supported in a normal asset format. You'd have to dig into the game to find where the file is being used to see how it is read. Since it's a raw format file, there is no common/standard method of reading it, so you'd have to see how the game is using it and what it expects it to be.
JackDev
Posts: 39
Joined: Tue Dec 26, 2017 6:36 am

Re: Extract the bytes file

Post by JackDev »

LolHacksRule wrote:What game? It has a header of double...

SkullGirls mobile
JackDev
Posts: 39
Joined: Tue Dec 26, 2017 6:36 am

Re: Extract the bytes file

Post by JackDev »

atom0s wrote:.bytes files are used by Unity to hold raw data that isn't supported in a normal asset format. You'd have to dig into the game to find where the file is being used to see how it is read. Since it's a raw format file, there is no common/standard method of reading it, so you'd have to see how the game is using it and what it expects it to be.


Thank you, brother.This is a mobile game called SkullGirls, a 2D fighting game. I think these bytes should contain the sequence frames.But unfortunately, it can't be extracted.