leetkangaroo Posted December 23, 2010 Posted December 23, 2010 Hello, I'm experiencing some problems with _MemoryRead when used with base pointers from Cheat engine. Basically my script works and returns the correct value of other base pointers but not the base pointer I need the value of. I just can't figure out why it's not working for the value I need! Here is my code... #include <NomadMemory.au3> #include <Misc.au3> #include <Array.au3> $ID=_MemoryOpen(ProcessExists("Somawindow.exe")) $Address=0x0D02B908 $Off=0x240 ;$Off1=0x278 $final = "0x" & Hex($Address + $Off) $value=_MemoryRead($final,$ID) ;$final1 = "0x" & Hex($Address + $Off1) ;$value=_MemoryRead($final1,$ID) sleep(2000) MsgBox(0,"Value", $value) _MemoryClose($value) Hope someone can help me...
Developers Jos Posted December 23, 2010 Developers Posted December 23, 2010 Hello, I'm experiencing some problems with _MemoryRead when used with base pointers from Cheat engine.Please read announcement at the top of this forum and adhere to it.Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Recommended Posts