View previous topic :: View next topic |
Author |
Message |
justsomedude84 How do I cheat?
Reputation: 0
Joined: 19 Nov 2011 Posts: 5
|
Posted: Fri Apr 06, 2012 3:19 pm Post subject: Value keeps changing |
|
|
hey guys, i need some help and iv looked all over but nothing is making sense to me. i have a game that im trying to make a trainer for. i am able to find the hp value and freeze it, but sometimes the memory location (i guess) changes and ill have to re-search my hp value again to find it. is there any way of making a trainer table that finds my hp address automatically when it changes? iv looked into the dma and pointer thing, but the guides are not helping me much. any help would be appreciated.
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25794 Location: The netherlands
|
Posted: Fri Apr 06, 2012 3:27 pm Post subject: |
|
|
Can i assume based on your previous posts that this is a flash game as well? Tell me if not
If so, pointers will not work, but perhaps it makes use of runtime compilation, so you can do a hook on the code and get the address from there.
Find what accesses your address and see if there is a piece of code not inside a module. On that instruction use "find out what addresses this instruction accesses" If it only accessez one address (the one you need) place a hook there and store the address that instruction references to a known location.
Then setup a pointer that makes use of it (or just change the value in the hook)
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
justsomedude84 How do I cheat?
Reputation: 0
Joined: 19 Nov 2011 Posts: 5
|
Posted: Fri Apr 06, 2012 4:53 pm Post subject: |
|
|
not flash, but java. im having no luck with the pointer thing, and i think im donig it right, but i get many results when i hex scan for the address the pointer probably points to. i have no idea what the hook thing is, but when i see what accesses it, ther are a few lines that come up and the pointer address is the same for all of them.
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25794 Location: The netherlands
|
Posted: Fri Apr 06, 2012 5:47 pm Post subject: |
|
|
If it runs inside a browser, pointers are useless. (Your username alone can already mess up pointers in a browser)
And even if it's not inside a browser then it would still be a proble. Java is an emulator so all memory accesses are based on a virtual base address that can be anything.
Try the code injection method if you're lucky and it makes use of compiled runtime code
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
justsomedude84 How do I cheat?
Reputation: 0
Joined: 19 Nov 2011 Posts: 5
|
Posted: Sat Apr 07, 2012 3:00 pm Post subject: |
|
|
Would anyone care to take a look at the game? If so, just PM me and ill tell you the details. Im starting to think maybe its not possible and will just have to keep doing it manually, lol.
|
|
Back to top |
|
 |
|