"Where am I?" Values

07/09/2009 00:03 Fixer_fixing#1
Hope I'm posting this in the right section.
I have a couple of questions about coding. How do you determine your "toons" current position x address and position y address? Exactly how do you come up with the Spawnpoint coordinates?

I've read through the tutorials on this page, although it's difficult with it translated, I have the basic idea down. I'm just interested in coding some of my own bots, and would like to figure out how you 1337 coders are finding the coordinates with out having to ask a thousand questions.

Any and all help would be greatly appreciated.
07/09/2009 13:39 buFFy!#2
Search with Cheat Engine or Somethings else for the X Coordinate Address, estimate the Y Coordinate Address via Offset or search it, too.

Read the address as a 'float'.
Code:
_MemoryRead($posx, $hProcess, 'float')
You can use this value as a CheckArea and MoveTo.
07/09/2009 17:18 Fixer_fixing#3
Thanks eF_Hacks