well cause you say its to do with auto pots, heres the script for CE so you can just use this.
Quote:
Originally Posted by noname231
Code:
[ENABLE]
alloc(newmem,1024)
label(returnhere)
label(originalcode)
label(exit)
label(check_mana)
label(finished_check)
0052D83F:
jmp newmem
nop
nop
nop
nop
nop
returnhere:
newmem:
originalcode:
cmp dword ptr [eax+08],01 // checking for HP pot?
jne check_mana
mov dword ptr[eax+08],11 // change to auto pot
mov dword ptr[eax+10],11
check_mana:
cmp dword ptr [eax+08],02 // checking for MP pot?
jne finished_check
mov dword ptr[eax+08],12 // change to auto pot
mov dword ptr[eax+10],12
finished_check:
cmp dword ptr [eax+08],13
je 0052dd2a
exit:
jmp returnhere
[DISABLE]
dealloc(newmem)
0052D83F:
cmp dword ptr [eax+08],13
je 0052dd2a
|
idk if its current (by that i mean if its a working address) so you may need to find working address. heres link to noname231 tut if you need to know more
[Only registered and activated users can see links. Click Here To Register...]
or if you really need to do it with those bytes, erm all i can really suggest is ask whoever told you to search that what to change them too. or try and find out what those bytes do then/refer too. they probably show some assembly command maybe even cmp dword ptr [eax+08],01 for example, idk and i can't be bothered checking it right now :/.