chick3234 Posted December 23, 2015 Share Posted December 23, 2015 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. Link to comment Share on other sites More sharing options...
Kaphotics Posted December 23, 2015 Share Posted December 23, 2015 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. Link to comment Share on other sites More sharing options...
chick3234 Posted December 23, 2015 Author Share Posted December 23, 2015 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? Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now