| View previous topic :: View next topic |
| Author |
Message |
thaipq8x How do I cheat?
Reputation: 0
Joined: 02 Sep 2014 Posts: 1
|
Posted: Tue Sep 02, 2014 1:18 am Post subject: How to scan Movement Pointer for MMORPG ? |
|
|
hi,
I wonder how people use CE to scan Movement pointer ? Can someone give me a hint for that ? i appreciate it .
|
|
| Back to top |
|
 |
BlubBlab How do I cheat?
Reputation: 0
Joined: 05 Sep 2014 Posts: 6
|
Posted: Sat Sep 06, 2014 4:40 am Post subject: |
|
|
If you want XYZ use google with : Cheat engine finding game coordinates
Their also stuff about other similar things.
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Sat Sep 06, 2014 1:48 pm Post subject: |
|
|
Typically movement coords are stored in floats for all MMORPGs since they are usually in 3D space. To start find a hill or area that your character will literally walk up and down on vertically.
Search for an unknown float value as the first scan. Then walk up the hill/stairs/etc. some so your character is higher then they were before.
Search for an unknown float value that has increased for the second scan.
Then walk back down the hill/stairs/etc. again and then search unknown float value that has decreased.
Repeat those steps til you can find your characters height coord. (Usually the Z or Y coord in most games depending on which order they store them in.)
Then when you find that one, the others are usually right next to that or very close. Use the memory browser to visually see the other data around it while you move to see which may be the other coords in question.
_________________
- Retired. |
|
| Back to top |
|
 |
paupav Master Cheater
Reputation: 13
Joined: 15 Apr 2011 Posts: 314 Location: P. Sherman 42, Wallaby Way, Sydney
|
Posted: Sat Sep 06, 2014 3:34 pm Post subject: |
|
|
| atom0s wrote: | Typically movement coords are stored in floats for all MMORPGs since they are usually in 3D space. To start find a hill or area that your character will literally walk up and down on vertically.
Search for an unknown float value as the first scan. Then walk up the hill/stairs/etc. some so your character is higher then they were before.
Search for an unknown float value that has increased for the second scan.
Then walk back down the hill/stairs/etc. again and then search unknown float value that has decreased.
Repeat those steps til you can find your characters height coord. (Usually the Z or Y coord in most games depending on which order they store them in.)
Then when you find that one, the others are usually right next to that or very close. Use the memory browser to visually see the other data around it while you move to see which may be the other coords in question. |
This, but depending on library/engine in which game was made coordinates could increase when you are going down and decrease when you are going up.
E.g in SFML and SDL max coordinates are at bottom right and coordinate 0,0 is at the top left.
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Sat Sep 06, 2014 4:08 pm Post subject: |
|
|
| pauw wrote: | | atom0s wrote: | Typically movement coords are stored in floats for all MMORPGs since they are usually in 3D space. To start find a hill or area that your character will literally walk up and down on vertically.
Search for an unknown float value as the first scan. Then walk up the hill/stairs/etc. some so your character is higher then they were before.
Search for an unknown float value that has increased for the second scan.
Then walk back down the hill/stairs/etc. again and then search unknown float value that has decreased.
Repeat those steps til you can find your characters height coord. (Usually the Z or Y coord in most games depending on which order they store them in.)
Then when you find that one, the others are usually right next to that or very close. Use the memory browser to visually see the other data around it while you move to see which may be the other coords in question. |
This, but depending on library/engine in which game was made coordinates could increase when you are going down and decrease when you are going up.
E.g in SFML and SDL max coordinates are at bottom right and coordinate 0,0 is at the top left. |
That would be screen coords, not player / entity position coords in a 3D plane. Along with that, stuff like movement and such is not engine specific or engine based, it is entirely based on how the game developers code the movement of the game itself.
_________________
- Retired. |
|
| Back to top |
|
 |
|