[Request]How to check get your char coord in game

02/18/2009 11:11 CObotter#1
Just want to know how to use AHK to get coordinate of your Character coordinate in game? checking for every 2 sec...

Thanks in advance...
02/20/2009 01:06 redskull010101#2
What you do is use something called a memory address
the address for x/y are as followed

XCoor - 005DB494
YCoor - 005DB498
02/20/2009 03:48 CObotter#3
Then how the memory address should be place in the code?
because i just started to learn AHK but i got basic Programming Skills...

and now i strugle and dont know how i could make a code that could be use...
maybe i need some simple AHK source code for the following program as my learning reference, if anyone of you could make it then is much appreciate
The Programme runs like this :
Code:
Run Program
Input Charname
Checking
if(Error)
  ExitProgram
While(NOTpress^Q)
{
MsgBox PositionX, PositionY
Sleep 5000
}
note, what i want is a program that could notify me my char X & Y position every 5 sec


maybe you guyz will ask what is the purpose of this programme, and i can say it is just for my learning purpose.