Send wrote: ↑Sat Oct 19, 2024 5:16 am
maifa2022 wrote: ↑Fri Oct 18, 2024 11:54 pm
Ok thank you , and understood.
Quick jump height/force modifier.
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
<CheatEntries>
<CheatEntry>
<ID>1</ID>
<Description>"Enable Jump Height Modifier"</Description>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>//Send
[ENABLE]
aobscanmodule(jumpforce,GameAssembly.dll,F3 0F 10 49 34 81)
alloc(newmem,$1000,jumpforce)
label(code return jforce)
newmem:
code:
movss xmm1,[jforce]
jmp return
jforce:
dd (float)11
jumpforce:
jmp newmem
return:
registersymbol(jumpforce)
registersymbol(jforce)
[DISABLE]
jumpforce:
db F3 0F 10 49 34
unregistersymbol(*)
dealloc(*)
</AssemblerScript>
<CheatEntries>
<CheatEntry>
<ID>2</ID>
<Description>"Set Jump Height"</Description>
<ShowAsSigned>0</ShowAsSigned>
<VariableType>Float</VariableType>
<Address>jforce</Address>
</CheatEntry>
</CheatEntries>
</CheatEntry>
</CheatEntries>
</CheatTable>
Just copy and paste in to the table.
first step i have copy and paste in to the table safe it. Then start the game and CE loading the file I'm getting this error,
Error while scanning for AOB's jumpforce Error: Not all results found
DLL injection fail.
second step have doing it like this,
Start the game after that star CE and load the ct file, i copy and past like you mention.
It work perfectly and jump high but not infinite jump.
After that i safe the file close everything and start over now getting this error.
This table failed to load: this is not a valid cheat table.
How can i merge both in one file without getting error, and if it can be infinite jump?
BTW thank you for helping.