View previous topic :: View next topic |
Author |
Message |
LunaTuna How do I cheat?
Reputation: 0
Joined: 17 Jun 2014 Posts: 8
|
Posted: Tue Jul 08, 2014 4:15 am Post subject: Find Address That Dosint Change |
|
|
Lets say I know the value of the address is 14, but it never changes. How would I find this in cheat engine?
|
|
Back to top |
|
 |
Redouane Master Cheater
Reputation: 3
Joined: 05 Sep 2013 Posts: 363 Location: Algeria
|
Posted: Tue Jul 08, 2014 4:26 am Post subject: Re: Find Address That Dosint Change |
|
|
LunaTuna wrote: | Lets say I know the value of the address is 14, but it never changes. How would I find this in cheat engine? |
The address you are looking for may be in a structure that you can find,for example,if you are looking for the player's jump height (a constant),then finding the player's coordinates or the player's hp might help,use the Dissect Data/Structures feature and look for any suspicious value,try changing those values and check if they change anything in the game,if it isn't what you want,undo the changes and try another one (Your game may crash but it's the best solution to find those constants).
|
|
Back to top |
|
 |
LunaTuna How do I cheat?
Reputation: 0
Joined: 17 Jun 2014 Posts: 8
|
Posted: Tue Jul 08, 2014 4:38 am Post subject: Re: Find Address That Dosint Change |
|
|
Redone wrote: |
The address you are looking for may be in a structure that you can find,for example,if you are looking for the player's jump height (a constant),then finding the player's coordinates or the player's hp might help,use the Dissect Data/Structures feature and look for any suspicious value,try changing those values and check if they change anything in the game,if it isn't what you want,undo the changes and try another one (Your game may crash but it's the best solution to find those constants). |
Thanks for the quick reply! But sadly I don't think this would help me much. The value does not have to do with much except its self :c
|
|
Back to top |
|
 |
Rissorr Master Cheater
Reputation: 3
Joined: 17 Sep 2013 Posts: 273 Location: Israel!
|
Posted: Tue Jul 08, 2014 5:24 am Post subject: |
|
|
@LunaTuna, the value (the constant) is players moving speed? money? what does it im the game?
|
|
Back to top |
|
 |
LunaTuna How do I cheat?
Reputation: 0
Joined: 17 Jun 2014 Posts: 8
|
Posted: Tue Jul 08, 2014 5:55 am Post subject: |
|
|
LemonMan wrote: | @LunaTuna, the value (the constant) is players moving speed? money? what does it im the game? |
Its a value that is sent to the server if it detects any cheats :L
|
|
Back to top |
|
 |
Redouane Master Cheater
Reputation: 3
Joined: 05 Sep 2013 Posts: 363 Location: Algeria
|
Posted: Tue Jul 08, 2014 6:06 am Post subject: |
|
|
LunaTuna wrote: | LemonMan wrote: | @LunaTuna, the value (the constant) is players moving speed? money? what does it im the game? |
Its a value that is sent to the server if it detects any cheats :L |
Programs and games send data to servers using the send function,which has the following c++ syntax:
Code: |
int send(
_In_ SOCKET s,
_In_ const char *buf,
_In_ int len,
_In_ int flags
); |
It returns an integer,which is the number of bytes sent in case of success,and it takes 4 arguments:
Here,the 2nd one is a pointer to a buffer containing the data that is being sent.
In the memory viewer of cheat engine,put a breakpoint on ws2_32.send,find the value of ESP,then go to [ESP+8] and check if it's the value that you want.
Else,you could use olly debugger to find where the program calls that API,and see if you can alter anything in that part of code.
This has a high chance of failure,can you play the game without internet?if no then I wouldn't recommend you to cheat.
|
|
Back to top |
|
 |
|