am632 Posted May 3, 2016 Share Posted May 3, 2016 Hi, I have a file and I'm using the following code to get its hex and export it to a text file. Local $FileOpen, $FileRead, $Hex $FileOpen = FileOpen("C:\game.save",16) $FileRead = FileRead($FileOpen) FileClose($FileOpen) ;convert to hex $Hex = Hex($FileRead) FileWrite("C:\save.txt",$Hex) My question is, once I have made my changes to the hex values i'm looking for, how do I convert it back to its original readable format? Thanks Link to comment Share on other sites More sharing options...
Jfish Posted May 4, 2016 Share Posted May 4, 2016 Take a look at _HexToString ... Build your own poker game with AutoIt: pokerlogic.au3 | Learn To Program Using FREE Tools with AutoIt 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