Jump to content

Recommended Posts

Posted

How did you guys make the program to read the hex files, I am trying to do it for another game that I am playing but could not figure it out. I have a hex editor, but it is encoded in a very weird way.

Posted

Depends what language, but generally you load it from a file into your program as a byte array.

c#: (path = file path of file you want to load)

byte[] hexdata = File.Open(path);

Once you have the file loaded, you can do whatever operations to decrypt/unshuffle/unpack data.

Posted
Depends what language, but generally you load it from a file into your program as a byte array.

c#: (path = file path of file you want to load)

byte[] hexdata = File.Open(path);

Once you have the file loaded, you can do whatever operations to decrypt/unshuffle/unpack data.

How did you go about decrypting it or unshuffling it?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...