0xCookies How do I cheat?
Reputation: 0
Joined: 23 Mar 2015 Posts: 6
|
Posted: Thu May 07, 2015 3:12 pm Post subject: stop game crash if changing memory in auto assembly |
|
|
I haven't found world wide (web) any solutions stop anticheat crash the game if I change the memory with the aobscan so auto assembly.
Please!
How to stop anticheat crash the game?
or/and
If there aren't any solutions, how to write/change the value of a address assembly code without nop and overwrite the original one?(There should be a way to stop anticheat, so I would be more happier, if you would answere the previous question)
But Im not very sure by that. If I view the memory and have reassembled some code some code from "..., al" to "..., eax" I works fine.
As soon as I nop the Address to assembly "..., al" to "..., eax", in auto assembly fully, so:
| Code: |
adc [rdx+0000008C],al
|
to
| Code: |
adc [rdx+0000008C],eax
|
I also nop the previous one and gave the new one. It seems like the game crashes because of anticheat as soon as I try to nop something.
Here is my code:
| Code: |
[ENABLE]
alloc(newmem,1000)
label(returnhere)
label(exit)
label(jump2)
registersymbol(jump2)
alloc(whatever,4)
aobscan(aobi,10 82 8C000000 C5 FA)
newmem:
adc [rdx+0000008C],eax
exit:
jmp returnhere
aobi:
jump2:
jmp newmem
nop
returnhere:
[DISABLE]
dealloc(newmem)
jump2:
adc [rdx+0000008C],al
db 10 82 8C000000
unregistersymbol(jump2)
dealloc(whatever)
//033476D7 - 10 82 8C000000 - adc [rdx+0000008C],al
//033476DD - C5 FA - lds edi,edx
|
I can't just "find the anticheat" and stop it by killing it (killing a dll that is communicating with the game and includes the anticheat can't be done this way).
Please help me out.
The people are telling we have to search at the internet, while there isn't any solution that can be found.
>>This is the offset from! Minecraft 1.8.4 that should change the angle with the players y-camera achse.
Thanks for any Feedback![/code]
|
|