I tried to update the CE hacks so I can use it for Eternia Dekaron but I couldn't find the address. I did exactly as the directions said but when search the array I get an address and "??" for value. I viewed it in memory view but all I can see is a bunch of ???????????. Did I do something wrong or could it be because Eternia change the arrays? BTW when I just inject the script as it is I just get DC.
Here's another Vac that works but it doesn't have the functions I want, if it helps:
[ENABLE]
alloc(newmem,1024)
label(returnhere)
label(originalcode)
label(exit)
00450BCD:
jmp newmem
nop
returnhere:
newmem:
originalcode:
mov edx,[eax+1c]
mov [ecx+20],edx
mov edx,99
mov [eax+1C],edx
mov edx,999 // number boss spawn
mov [eax+8c],edx
mov edx,01 // time delay between spawn
mov [eax+90],edx
mov edx,99 // num mob follow me
mov [eax+3C],edx
mov [ecx+20],edx
exit:
jmp returnhere
[DISABLE]
dealloc(newmem)
00450BCD:
mov edx,[eax+1c]
mov [ecx+20],edx
I believe the credits for this vac goes to Chiharu88
So the question is how do I change the address or edit your script to make it work. OR how do I add the functions in your script to this script. Sorry, only codes I understand are basic C++.