AUTOPOT hak

12/30/2009 13:29 GuinN#1
hello dudes i have a question .. can someone give me a full script to Ce for autopots? becouse my it doesnt working... i want to relise my mana when it is like 100 but its not work.. plz answer... ( sry for my eng im learning it:P )
12/30/2009 14:55 Vaidas B#2
#reported wrong section

Code:
[ENABLE]
alloc(newmem,1024)
label(returnhere)
label(originalcode)
label(exit)
label(check_mana)
label(finished_check)

0052D09F: //[color="red"]83 78 08 13 0F 84[/color]
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 0052d13a

exit:
jmp returnhere

[DISABLE]
dealloc(newmem)

0052D09F:
cmp dword ptr [eax+08],13
db 0F 84 91 00 00 00
red is the array
12/30/2009 19:00 fliptrickdragon#3
you probably have the wrong off sets or something. Also, you do know that you have to use a potion for it to kick in right? It needs to know which potion to use, so use it when you log in, and if you have done those two things, then it should work.
12/30/2009 23:18 trane.#4
#Moved