Difference between revisions of "Help File:Money type"

From Cheat Engine
Jump to navigation Jump to search
(Created page with '<hr><div align="left"><font face="Arial" color="#010101" class="Arial2"> The following custom type script will handle values that need to be divided by 100 to get to the corre…')
 
Line 1: Line 1:
<hr><div align="left"><font face="Arial"  color="#010101"  class="Arial2">
+
== Money type (divided by 100) ==
The following custom type script will handle values that need to be divided by 100 to get to the  
+
 
correct value</font></div><div align="left"><font face="Arial"  color="#010101"  class="Arial2">
+
The following custom type script will handle values that need to be divided by 100 to get to the correct value
This type is used by some games like civilization 5 where the money and research technology is  
+
This type is used by some games like civilization 5 where the money and research technology is stored using this floating point type.
stored using this floating point type.</font></div><div align="left"><font face="Arial"  color="#010101"  class="Arial2"><br></font></div><div align="left"><font face="Arial"  color="#010101"  class="Arial2">
+
 
example:</font></div><div align="left"><font face="Arial"  color="#010101"  class="Arial2">
+
 
100.35 gold would be stored in memory as 10013</font></div><div align="left"><font face="Arial"  color="#010101"  class="Arial2">
+
Example:
103.89 gold would be stored in memory as 10389</font></div><div align="left"><font face="Arial"  color="#010101"  class="Arial2"><br></font></div><div align="left"><font face="Arial"  color="#010101"  class="Arial2">
+
 
with this script you'd be able to scan for 100 and 103 respectively, and if you wanted to change  
+
100.35 gold would be stored in memory as 10013
the value to 700 you'd just change the value to 700 instead of 70000</font></div><div align="left"><font face="Arial"  color="#010101"  class="Arial2"><br></font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2"><br></font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
alloc(TypeName,256)</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
103.89 gold would be stored in memory as 10389
alloc(ByteSize,4)</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
alloc(ConvertRoutine,1024)</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
alloc(ConvertBackRoutine,1024)</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2"><br></font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
with this script you'd be able to scan for 100 and 103 respectively, and if you wanted to change the value to 700 you'd just change the value to 700 instead of 70000
TypeName:</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
db 'Civ 5 Float',0</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2"><br></font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
ByteSize:</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  alloc(TypeName,256)
dd 4</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2"><br></font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  alloc(ByteSize,4)
//The convert routine should hold a routine that converts the data to an  
+
  alloc(ConvertRoutine,1024)
nteger (in eax)</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  alloc(ConvertBackRoutine,1024)
//function declared as: stdcall int ConvertRoutine(unsigned char  
+
 
*input);</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2"><br></font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  TypeName:
//Note: Keep in mind that this routine can be called by multiple threads  
+
  db 'Civ 5 Float',0
at the same time.</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2"><br></font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
ConvertRoutine:</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  ByteSize:
[32-bit]</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  dd 4
push ebp</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
mov ebp,esp</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  // The convert routine should hold a routine that converts the data to an nteger (in eax)
push ecx</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  // function declared as: stdcall int ConvertRoutine(unsigned char *input);
mov ecx,[ebp+8]</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
[/32-bit]</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2"><br></font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  // Note: Keep in mind that this routine can be called by multiple threads at the same time.
//at this point ecx contains the address where the bytes are stored</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
//save the used registers</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  ConvertRoutine:
push edx //fun fact about ce's assembler, because push ebx does not  
+
  [32-bit]
exist in 64-bit it becomes the 64-bit push rdx automatically</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  push ebp
push ebx</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2"><br></font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  mov ebp,esp
//put the bytes into the eax register</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  push ecx
mov eax,[ecx] //second fun fact, addressing with 32-bit registers  
+
  mov ecx,[ebp+8]
doesn't work in 64-bit, it becomes a 64-bit automatically (most of the  
+
  [/32-bit]
time)</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2"><br></font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
xor edx,edx</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  // at this point ecx contains the address where the bytes are stored
mov ebx,#100</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  // save the used registers
div ebx //divide eax by 100 and put the result in eax (and leftover in  
+
  push edx // fun fact about ce's assembler, because push ebx does not exist in 64-bit it becomes the 64-bit push rdx automatically
edx)</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2"><br></font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  push ebx
pop ebx</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
pop edx</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  // put the bytes into the eax register
//and now exit the routine</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  mov eax,[ecx] // second fun fact, addressing with 32-bit registers doesn't work in 64-bit, it becomes a 64-bit automatically (most of the time)
[64-bit]</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
ret</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  xor edx,edx
[/64-bit]</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  mov ebx,#100
[32-bit]</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  div ebx // divide eax by 100 and put the result in eax (and leftover in edx)
pop ecx</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
pop ebp</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  pop ebx
ret 4</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  pop edx
[/32-bit]</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2"><br></font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  // and now exit the routine
//The convert back routine should hold a routine that converts the given  
+
  [64-bit]
integer back to a row of bytes (e.g when the user wats to write a new  
+
  ret
value)</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  [/64-bit]
//function declared as: stdcall void ConvertBackRoutine(int i, unsigned  
+
  [32-bit]
char *output);</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  pop ecx
ConvertBackRoutine:</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  pop ebp
[32-bit]</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  ret 4
push ebp</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  [/32-bit]
mov ebp,esp</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
push edx //save the registers</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  // The convert back routine should hold a routine that converts the given integer back to a row of bytes (e.g when the user wats to write a new value)
push ecx</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  // function declared as: stdcall void ConvertBackRoutine(int i, unsigned char *output);
mov edx,[ebp+0c]</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  ConvertBackRoutine:
mov ecx,[ebp+08]</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  [32-bit]
[/32-bit]</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2"><br></font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  push ebp
//at this point edx contains the address to write the value to</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  mov ebp,esp
//and ecx contains the value</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  push edx // save the registers
push eax</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  push ecx
push edx</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  mov edx,[ebp+0c]
push ecx</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2"><br></font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  mov ecx,[ebp+08]
mov eax,ecx //eax gets the given value</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  [/32-bit]
xor edx,edx //clear edx</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
mov ecx,#100</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  // at this point edx contains the address to write the value to
mul ecx //multiply eax and put the results into edx:eax (edx is ignored  
+
  // and ecx contains the value
for this routine)</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2"><br></font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  push eax
pop ecx</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  push edx
pop edx</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  push ecx
mov [edx],eax</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
pop eax</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2"><br></font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  mov eax,ecx // eax gets the given value
[64-bit]</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  xor edx,edx // clear edx
//everything is back to what it was, so exit</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  mov ecx,#100
ret</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  mul ecx // multiply eax and put the results into edx:eax (edx is ignored for this routine)
[/64-bit]</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2"><br></font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
[32-bit]</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  pop ecx
//cleanup first</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  pop edx
pop ecx</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  mov [edx],eax
pop edx</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  pop eax
pop ebp</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
 
ret 8</font></div><div align="left"><font face="Courier New"  color="#010101"  class="CourierNew2">
+
  [64-bit]
[/32-bit] </font></div>
+
  // everything is back to what it was, so exit
 +
  ret
 +
  [/64-bit]
 +
 
 +
  [32-bit]
 +
  // cleanup first
 +
  pop ecx
 +
  pop edx
 +
  pop ebp
 +
  ret 8
 +
  [/32-bit]

Revision as of 00:10, 7 March 2017

Money type (divided by 100)

The following custom type script will handle values that need to be divided by 100 to get to the correct value This type is used by some games like civilization 5 where the money and research technology is stored using this floating point type.


Example:

100.35 gold would be stored in memory as 10013

103.89 gold would be stored in memory as 10389


with this script you'd be able to scan for 100 and 103 respectively, and if you wanted to change the value to 700 you'd just change the value to 700 instead of 70000


 alloc(TypeName,256)
 alloc(ByteSize,4)
 alloc(ConvertRoutine,1024)
 alloc(ConvertBackRoutine,1024)
 
 TypeName:
 db 'Civ 5 Float',0
 
 ByteSize:
 dd 4
 
 // The convert routine should hold a routine that converts the data to an nteger (in eax)
 // function declared as: stdcall int ConvertRoutine(unsigned char *input);
 
 // Note: Keep in mind that this routine can be called by multiple threads at the same time.
 
 ConvertRoutine:
 [32-bit]
 push ebp
 mov ebp,esp
 push ecx
 mov ecx,[ebp+8]
 [/32-bit]
 
 // at this point ecx contains the address where the bytes are stored
 // save the used registers
 push edx // fun fact about ce's assembler, because push ebx does not exist in 64-bit it becomes the 64-bit push rdx automatically
 push ebx
 
 // put the bytes into the eax register
 mov eax,[ecx] // second fun fact, addressing with 32-bit registers doesn't work in 64-bit, it becomes a 64-bit automatically (most of the time)
 
 xor edx,edx
 mov ebx,#100
 div ebx // divide eax by 100 and put the result in eax (and leftover in edx)
 
 pop ebx
 pop edx
 // and now exit the routine
 [64-bit]
 ret
 [/64-bit]
 [32-bit]
 pop ecx
 pop ebp
 ret 4
 [/32-bit]
 
 // The convert back routine should hold a routine that converts the given integer back to a row of bytes (e.g when the user wats to write a new value)
 // function declared as: stdcall void ConvertBackRoutine(int i, unsigned char *output);
 ConvertBackRoutine:
 [32-bit]
 push ebp
 mov ebp,esp
 push edx // save the registers
 push ecx
 mov edx,[ebp+0c]
 mov ecx,[ebp+08]
 [/32-bit]
 
 // at this point edx contains the address to write the value to
 // and ecx contains the value
 push eax
 push edx
 push ecx
 
 mov eax,ecx // eax gets the given value
 xor edx,edx // clear edx
 mov ecx,#100
 mul ecx // multiply eax and put the results into edx:eax (edx is ignored for this routine)
 
 pop ecx
 pop edx
 mov [edx],eax
 pop eax
 
 [64-bit]
 // everything is back to what it was, so exit
 ret
 [/64-bit]
 
 [32-bit]
 // cleanup first
 pop ecx
 pop edx
 pop ebp
 ret 8
 [/32-bit]