ygtrece How do I cheat?
Reputation: 0
Joined: 24 May 2020 Posts: 1 Location: United Kingdom
|
Posted: Sun May 24, 2020 8:20 am Post subject: How do I get the new bytes in an updated game? |
|
|
So I found this cheat engine table (pokemon uranium) and it is outdated, some of the cheat works and some not and I'm trying to find the new bytes for the cheats that don't work and update it myself.
This is what the creator of the table said
"
The only thing I have found that is changing between updates is this:
Code:
// the game uses the same instructions between updates
{
8B 55 10 - mov edx,[ebp+10]
8B 45 FC - mov eax,[ebp-04]
-----------------------Injecting Here---------------------------
8B 48 08 - mov ecx,[eax+08]
89 0A - mov [edx],ecx
-----------------------Done Injecting---------------------------
B8 01000000 - mov eax,00000001
8B E5 - mov esp,ebp
5D - pop ebp
C3 - ret
}
//Version 1.2.1
cmp [eax],397A //Hold item
je Item_Filter
cmp [eax],B472 //Pokemon name
je Pokemon_Filter
cmp [eax],392A //HP
je Health_Filter
cmp [eax],31F2 //EXP
je Exp_Filter
cmp [eax],FC22 //Pokeball caught with
je Pokeball_Filter
cmp [eax],136D2 //Level met at
//Version 1.2.2
cmp [eax],397A //Hold item
je Item_Filter
cmp [eax],B47A //Pokemon name
je Pokemon_Filter
cmp [eax],392A //HP
je Health_Filter
cmp [eax],31F2 //EXP
je Exp_Filter
cmp [eax],FC1A //Pokeball caught with
je Pokeball_Filter
cmp [eax],136EA //Level met at
je Met_Filter
Notice how the bytes that the script needs to compare changed from version 1.2.1 to 1.2.2 for the “pokemon name”, the “pokeball caught with” and the “level met at”, but the bytes for the “hold item”, “HP” and “EXP” didn’t change.
"
Now the version I'm using is 1.2.4 and those 3 cheats he mentioned that changed from 1.2.1 to 1.2.2 don't work anymore meaning the game developer changed the bytes again (since I'm using the newer version 1.2.4). Question is, how do I get the new bytes and update the cheat myself? (Because the creator isn't active anymore.)
Thanks!
Here's the link for the full thread if you need to :
fearlessrevolution(dot)com/threads/467/
_________________
What's the opposite of overwhelmed? Because, that's what I'm feeling right now. |
|