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.
Have a nice day
Everline
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
Everline