*** The basis is taken from the previous tips and brought to mind, I hope;) .
Training:
- Launch the game and Cheat Engine from the admin
- Once loaded, we go into the field and pause.
- We launch a search for money or experience, because they are the easiest to find. We look at the top right, experience in Progress / Statistics.
- We filter out the value until only one remains (we spend money in the garage to improve the current car or ride in a circle if we filter out experience).
Finding a place for injection:
For clarity, you can watch d782G-PS_js here. BUT! We do nothing after the 7:30 video! Those. do not change “mov edi, [rsp + 40]” to anything.
Create an injection:
- To create an injection at the address of the found instruction, you need to prepare a script.
Press (Ctrl + A) or select “Tools” – “Auto Assemble”
- In the “Template” menu, first select the lowest item, then the highest one and confirm the proposed values.
Or press (Ctrl + Alt + T), then (Ctrl + I).As a result, we get a template for our script..
- Now we need to finalize it.
If, in short and without going into details, then it is necessary to bring it to the form:Line 7: add an extra label (cheat)
Lines 12-13: we add the check of the value we need, and if so, we jump to the “cheat” label.
We write the value for which to check after the hashtag (I have it 65689). This is the very money or experience that we were looking for in the beginning.
cmp [rsp + 40], # 65689
je cheat
Lines 20-23: We prescribe the forced assignment of the desired value and the subsequent exit.
First comes the label. Then the assignment itself. And we also indicate the value after the hashtag. Now the desired one (I think 750 liam is enough;)). Next is the required line for the correct operation of the injection. And finally, redirect to exit.
cheat:
mov edi, # 750000000
cmp qword ptr [rbx], 00
jmp exit
- As soon as the script is edited – add it to the list of addresses in the main window. (File> Assign to current cheat table)
- It remains only to activate the script and return to the game to spend money or gain experience (depending on what you were looking for initially) and wait / save progress (a spinning icon at the bottom right of the screen). After that, the script can be deactivated, because it shouldn’t work anymore.
Don’t close the game and Cheat Engine yet.
Changing other values later
If everything went well, then other values can be changed by analogy. What kind? See / search for yourself. For example, the number of fans.
What’s most interesting – there is no need to search for addresses again! Just return to the “Memory Viewer” window and create a new script by analogy.
Only now, in the 12th line (from the 3rd paragraph of the previous section) we write a new value, the one that we want to change in the 21st new one. Add a new script (or save the edited one) and repeat the steps of step 5 of the previous section.
In theory, this way you can safely change any integer values in the game. In theory, because I personally had enough money. I’ll play the rest. =)
Download Cheat Engine from our server you can here.