View previous topic :: View next topic |
Author |
Message |
xelipe How do I cheat?
Reputation: 0
Joined: 01 Jul 2015 Posts: 7
|
Posted: Wed Jul 01, 2015 11:04 am Post subject: How he spent a code? |
|
|
Hello,
I am using Google translator. Maybe not much entienad.
I am very happy with my progress in Cheat Engine, I have reached the point of finding pointers and change functions with ASM.
I am using cheat engine to find the positions of various enemies, but is that the addresses are dynamic and are created as they appear, so for me it is very difficult to obtain and that is why I use the utility Find out what address. ....
Do some calculations based on the position's why I need to get their addresses.
I thought I could do it statically, create static address but do not know how I could do it and that I would create many address and then not be erased.
So my question, how I can do? to not depend on cheat engine and use C # or continue using AHK or autoit to do these operations with the address of the enemies actually they are the x and y positions and.
Thank you very much
Best regards
|
|
Back to top |
|
 |
Syperus Advanced Cheater
Reputation: 1
Joined: 05 Jun 2011 Posts: 61
|
Posted: Wed Jul 01, 2015 11:16 am Post subject: |
|
|
If I'm understanding the question correctly your asking how to wrote your hack tlso that it doesn't require CE? I write all my hacks in a DLL and inject them into the game. Others write executables for theirs. Look into writing to the process memory. Not sure what the actual function isbfornit in C#. I write all mine in C++, but that'll get you started.
|
|
Back to top |
|
 |
xelipe How do I cheat?
Reputation: 0
Joined: 01 Jul 2015 Posts: 7
|
Posted: Wed Jul 01, 2015 11:28 am Post subject: |
|
|
No, I want to get the address obtained from " Changed Address" because those addresses are dynamic and are created as creatures appear .
So I want to get these addresses from C # or AHK .
Because right now I get directly from those addresses but Cheat Engine and the process is very long and not good .
If you have any recommendation on how to obtain these addresses or save these address in some form in an array or something like that .
thank you very much
Description: |
|
Filesize: |
193.79 KB |
Viewed: |
3145 Time(s) |

|
|
|
Back to top |
|
 |
STN I post too much
Reputation: 43
Joined: 09 Nov 2005 Posts: 2676
|
Posted: Wed Jul 01, 2015 12:17 pm Post subject: |
|
|
Learn Code Injection.
For using your script in your C# or code, these API's are gonna come in handy
OpenProcess
VirtualProtect
WriteProcessMemory
You can either FindWindow/GetWIndowThreadProcesID or Thelp32snapshot apis for grabbing process PID.
I am sure there is going to be a C# trainer template available so check that and learn from it.
What is AHK ?
_________________
|
|
Back to top |
|
 |
xelipe How do I cheat?
Reputation: 0
Joined: 01 Jul 2015 Posts: 7
|
Posted: Wed Jul 01, 2015 3:27 pm Post subject: |
|
|
I do not understand me .
Through Autohotkey me, I read and write memories with ReadMemory APIs and WriteMemory .
I want to get the address as you get the cheat engine . In catching up comes an example .
It is through the choice: "Find out what address code accesses " . How do I do that in C # or you can only do in C , C ++ ?
AutoHotkey is a macro to automate tasks , like autoit .
Do you understand my problem ?.
I will explain all over again : I want to get the position of the creatures . To do what I do through that screen above, where I listed the address. Through Autohotkey I connect the listbox cheatengine and extract the address. If no other way I would know .
Thank you very much for your help.
|
|
Back to top |
|
 |
Syperus Advanced Cheater
Reputation: 1
Joined: 05 Jun 2011 Posts: 61
|
Posted: Wed Jul 01, 2015 3:39 pm Post subject: |
|
|
Sounds like you're wanting to to create your own memory reader. If your'e wanting to do that then you need to take STN's advice and read up on Read/WriteProcessMemory, but you'll still need to know where to tell the program to point to, to read it.
|
|
Back to top |
|
 |
|