Post
by FBML »
[QUOTE="IzeNik, post: 51383, member: 19287"]Like this?
"forza_x64_release_final.exe"+35E982: 41 BD FF C9 9A 3B - mov r13d,00989680
//noob in CH[/QUOTE]
[LIST]
[*]first open the table with cheat engine
[*]double click on any script you want to edit
[*]check if float value or decimal
[/LIST]
as for Max & Infinite Credite When Get/Spend (999,999,999) Script, it's the game max value not by me.
ok .. now take a look at XP script you'll see this:
[COLOR=rgb(41, 105, 176)]{
EDI= Currently XP, RSI= Gained XP.
}
mov edi,[/COLOR][COLOR=rgb(184, 49, 47)]3B9A0000[/COLOR]
[COLOR=rgb(41, 105, 176)] mov rsi,[/COLOR][COLOR=rgb(184, 49, 47)]C9FF[/COLOR]
999,999,999 [COLOR=rgb(65, 168, 95)]decimal [/COLOR]= 0x3B9AC9FF [COLOR=rgb(41, 105, 176)]in HEX[/COLOR]
as you can see
EDI= Currently XP
RSI= Gained XP.
Start from there, use this method it's easier maybe ..!!
[COLOR=rgb(41, 105, 176)]mov edi,[/COLOR][COLOR=rgb(65, 168, 95)]#990000[/COLOR]
[COLOR=rgb(41, 105, 176)]mov rsi,[/COLOR][COLOR=rgb(65, 168, 95)]#9999[/COLOR]
Now for float you can do this, look at Max Drift Points When Get (999,999,999) script you'll see this:
[COLOR=rgb(41, 105, 176)]mov [rbp+000000A8],[/COLOR][COLOR=rgb(184, 49, 47)]4E6E6B28[/COLOR]
[COLOR=rgb(41, 105, 176)]movss xmm0,[rbp+000000A8][/COLOR]
you see xmm0 register its for float yon can't use decimal values or you'll get wrong no. so ..
999,999,999 [COLOR=rgb(65, 168, 95)]float [/COLOR]= 0x4E6E6B28[COLOR=rgb(41, 105, 176)] in HEX[/COLOR]
use this method it's easier maybe ..!!
[COLOR=rgb(41, 105, 176)]mov [rbp+000000A8],[/COLOR][COLOR=rgb(65, 168, 95)](float)999999999[/COLOR]
[COLOR=rgb(41, 105, 176)]movss xmm0,[rbp+000000A8][/COLOR]
I hope this will help you .. Good Luck