Hi mates,
i have an Assebly Script ( below) what should change the Skill Points from an HM to xx per level.
So the most server doesnt use Hard Mode Charakters... I need to change from Hard Mode to Ultimate mode.
Does anyone know how to do?
Code:
[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048)
label(returnhere)
label(originalcode)
label(exit)
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
add word ptr [esi+0000013A],05
exit:
jmp returnhere
ps_game.exe+9B5CB:
jmp newmem
nop
nop
nop
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
ps_game.exe+9B5CB:
add word ptr [esi+0000013A],04
//Alt: db 66 83 86 3A 01 00 00 04
Regards