Page 2 of 2

Re: How to changes values by reducing them in PES 6

Posted: Sun Sep 11, 2022 2:50 pm
by 1nn5
Toga wrote:
Sat Sep 10, 2022 1:29 pm
1nn5 wrote:
Sat Sep 10, 2022 11:05 am
This time the game crashed when the menu where it shows how + funds I get pop-up (after finishing a match and before returning to the principal menu)
it's probably only because the push and the pop's are out of order...
seeing the order of the pop's

Code: Select all

 pop eax // restore eax 
 mov [eax+34],esi // move value from esi to [eax+34]
 pop edx 
 pop ecx

the registers should be pushed in this order:

Code: Select all

 push ecx
 push edx
 push eax
AlexS wrote:
Sat Sep 10, 2022 9:08 pm
1nn5 wrote:
Thu Sep 08, 2022 3:04 pm
How can I reduce the esi value when it's 500 and 1000 ?
How to change ESI value ??
shr esi,1
add [eax+34],esi
LeFiXER wrote:
Fri Sep 09, 2022 6:46 pm
You can use the divide instruction:

Code: Select all

...
div esi,2
add [eax+34],esi
...
Hey, here's the code of a cheat trainer made for PES 5.This CT does the same thing that I want for PES 6.
For e.g. 500 -> 250
It's a decompile of the CT

Re: How to changes values by reducing them in PES 6

Posted: Sun Sep 11, 2022 8:04 pm
by LeFiXER
The scripts in that table move an arbitrary value into the ESI register. I would trace it and see where the money value is being set the latest and then use a script at that point.