GedoBear How do I cheat?
Reputation: 0
Joined: 17 Jan 2015 Posts: 1
|
Posted: Sat Jan 17, 2015 9:33 am Post subject: Auto assembler - This instruction can't be compiled |
|
|
I want to execute this asm from cheat engine. But it shows error on this line.
I didn't get it. Anyone can help?
| Code: | | movss [client.CreateInterface+27B178],(float)90 |
Full code:
| Code: | [ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048)
label(returnhere)
label(originalcode)
label(exit)
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
movss [client.CreateInterface+27B178],(float)90
originalcode:
//movss [client.CreateInterface+27B178],xmm0
exit:
jmp returnhere
"client.dll"+5C0AC:
jmp newmem
nop
nop
nop
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"client.dll"+5C0AC:
movss [client.CreateInterface+27B178],xmm0
//Alt: db F3 0F 11 05 98 60 A3 1E |
|
|