hendrikhe Posted April 26, 2008 Posted April 26, 2008 (edited) Hey, I am trying to obtaine my x-y coordinates in the game Rappelz, well using a Cheat Engine and I find the addresses easily. But I am unable to use this addresses in AutoIt, cause the address show in AutoIt always a Value from 0 (instead of 169045 for example). This is my simple code (working for other simple programms but not for Rappelz) CODE#include <Misc.au3> #include <Array.au3> #include <NomadMemory.au3> $ID=_MemoryOpen(ProcessExists("SFrame.exe")) ; or $ID=_MemoryOpen(0x00000B3C) $Address=0x08138B64 ; current Address from my x-coordinate $Xcoordinate =_MemoryRead($Address,$ID) sleep(5000) MsgBox(0,"Value", $Xcoordinate) _MemoryClose($ID) It seems that HackShield blocks _MemoryRead($Address,$ID), because in the Message box the value is always 0. but since other programms like Cheat Engine are able to read this address, is there any way to do it also with AutoIt? Edited April 26, 2008 by hendrikhe
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