Zinefer Posted December 3, 2008 Posted December 3, 2008 Does anyone know how to get a binary address such as this one using NomadMemory.au3? Thanks so much in advance. eg.bmp
BrettF Posted December 3, 2008 Posted December 3, 2008 Hi There, I can't see any binary on that picture. All looks like hex to me... Are you sure you know what binary is? Also, post a sample script. What have you tried? Cheers, Brett Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
Zinefer Posted December 3, 2008 Author Posted December 3, 2008 I'm positive, I searched cheatengine for an unknown number, found a variable that did what I wanted but wasnt a logical size, so I used cheatengines type modifier and took the second binary value from the value.
Zinefer Posted December 3, 2008 Author Posted December 3, 2008 (edited) Okay, here is another question: How can I get different data types? I have another working value but this one is a 2 Byte, I can only seem to get this working for 4 Byte value types... Here are a few things I have tried: $p = _MemoryRead($pointer, $handle, "byte[2]") $p = _MemoryRead($pointer, $handle, "int[16]") $p = _MemoryRead($pointer, $handle, "2byte") Thanks in advance! Edited December 3, 2008 by Zinefer
ChangMinYang Posted December 3, 2008 Posted December 3, 2008 (edited) Okay, here is another question: How can I get different data types? I have another working value but this one is a 2 Byte, I can only seem to get this working for 4 Byte value types... Here are a few things I have tried: $p = _MemoryRead($pointer, $handle, "byte[2]") $p = _MemoryRead($pointer, $handle, "int[16]") $p = _MemoryRead($pointer, $handle, "2byte") Thanks in advance! In CE; byte == 1 byte bytes == 2 byte dword == 4 byte qword == 8 byte In _Memory.au3 byte == ubyte bytes == ushort dword == dword qword == uint64 Edited December 3, 2008 by GoodMan
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