Autopots

04/19/2010 08:21 everline#1
Here is the autopots script that is working.
You need Cheat Engine 5.6.
I found the scipt somewhere in the forum and just update the offsets.
Code:
aobscan(OriginalJump, 6A 02 FF 52 34 BE 10 00 00 00 39 74 24 28)

[ENABLE]
alloc(newmem,40)
label(returnhere)
label(exit)
label(check_mana)
label(finished_check)

007E1C18:
//007E0E98: //83 78 08 13 0F 85 14 01 00 00 8B 0D 6C 76 CC 00 8B 01
jmp newmem
nop
nop
nop
nop
nop
returnhere:

newmem:
cmp dword ptr [eax+08],01 // checking for HP pot?
jnz short 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?
jnz short 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
jnz OriginalJump+5

exit:
jmp returnhere


[DISABLE]
dealloc(newmem)

007E1C18: //83 78 08 13 0F 85 14 01 00 00 8B 0D 6C 76 CC 00 8B 01
cmp dword ptr [eax+08],13
jnz OriginalJump+5
Have a nice day
Everline
04/19/2010 08:35 survivor81#2
nope just tried scanning the array of bytes nothing comes up
04/19/2010 08:45 everline#3
Quote:
Originally Posted by survivor81 View Post
nope just tried scanning the array of bytes nothing comes up
What do you mean?
The script is working with the offsets and all.
Im using it myself at the moment.
Cherios :p

Have a nice day
Everline
04/19/2010 08:59 survivor81#4
lol thanks fixed works nicely thanks again :)
04/19/2010 12:29 MrPremium#5
OLD Script works fine need to change Offset only

007E1C18
04/20/2010 01:25 RICANPAPI_16#6
works tyvm
04/26/2010 15:41 LFH19#7
Works great!!!! Thanks you very much!