Rahand19 How do I cheat?
Reputation: 0
Joined: 20 Aug 2020 Posts: 1
|
Posted: Fri Aug 21, 2020 12:41 pm Post subject: How U Can Make AOB Scripts For 1 and 0 Byte Values? |
|
|
So As The Title says is there anyways ? Without finding the Pointer
and we cant see what writes/access the address since its like that...
i didn't find any thing that would help with that.
For Example We Have A Mono Dissector Code that Turns on
A Code That Always Forces The Sword To Hit (1 Enabled , 0 Disabled)
EX:
Code: | [ENABLE]
aobscan(ForceSword,00 00 00 00 0B 00 00 00 1B 00 00 00 20)
alloc(newmem,$1000)
label(code)
label(return)
newmem:
code:
add [eax],al
add [eax],al
or eax,[eax]
jmp return
ForceSword:
jmp newmem
nop
return:
registersymbol(ForceSword)
[DISABLE]
ForceSword:
db 00 00 00 00 0B 00
unregistersymbol(ForceSword)
dealloc(newmem) |
thanks for answering if u do
|
|