Jump to content

Binafus

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by Binafus

  1. I was trying to create an Output window for results for my Script. It would be nice if it could not get focus of the program that was currently running. Also it would need to be updated as the values change, not sure if it has to be remade each time or if there is an easy way to update the window with new results.
  2. Read through the script your using and understand what your doing. But do not see how to get a pointer out of Cheat Engine into autoit still. It gives as an address Process.exe+memoryAddress and an Offset In cheat Engine it gives the address it points at which works while the program is open, but when you restart the program it is reading from the address changes. The pointer stays the same but now points to a new address which works if you manually put it in but my question is how do you get the info into autoit just using the pointer and offset.
  3. I can not figure out how to read a value from a pointer. I can get my program to read and use the normal addresses but having a hard time with a pointer. In Cheat Engine I found a pointer. Process.exe+memoryAddress then it has an Offset Not sure how to use a pointer. For a normal address I'm reading it like this. $x = 23618832 <- memory address $Process = 'nameofgame.exe' <- program $PID = ProcessExists($Process) $OpenProcess = MemOpen(0x38, False, $PID) $playerX = Memread($OpenProcess, $x, 'float', 4) This is working fine. Any help would be appreciated.
×
×
  • Create New...