hayo2012 How do I cheat?
Reputation: 0
Joined: 26 Mar 2020 Posts: 2
|
Posted: Thu Mar 26, 2020 8:54 pm Post subject: Help with Function Works Differently in another game server. |
|
|
Hello Folks, Sorry for my bad grammar, i want to ask. ive an aob injections for a game. this is the aob injection
| Quote: | aobscanmodule(fake,Game.exe,FF 35 28 FF 35 20 06) // should be unique
registersymbol(fake)
alloc(newmem,$1000)
alloc(GIVE,100)
alloc(TAKE,100)
globalalloc(Hit,4)
globalalloc(Beat,4)
Hit:
dd #20000
Beat:
dd #1
label(code)
label(Give)
label(return)
newmem:
cmp eax,acx
je Give
jmp code
Give:
push [Hit] //Monster Hit
push [ebp+0C]
jmp return
code:
push [Beat] //Player Hit
push [ebp+0C]
jmp return
fake:
jmp newmem
nop
return:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
fake:
db 35 28 FF 35 20
unregistersymbol(fake)
dealloc(newmem)
dealloc(GIVE)
dealloc(TAKE)
dealloc(Hit)
dealloc(Beat) |
At the Game Server 1
the script works fine. so when monster hit me is 1 and when im hitting the monster is 20000
But At the Game Server 2
the scripts works differently, its the same amount when im hitting nor monster hitting me.
please what should i do
Thanks Before
|
|