but you have to understand there are some games with conditions like where you're not supposed to kill a boss in a fight, there's supposed to be a cutscene maybe so when you kill them in 1 hit, the game gets stuck and you have to restart...
or there's a game like dark souls where you can have a one hit kill active but soon as you activate the bonfire (which writes to ALL surrounding enemies' health) they immediately die. its not supposed to do that.
i've looked everywhere. on sneaky mofo's channel, on cheat the game and i cannot find a tutorial on this anywhere.
so i need to know how to make a 2 hit kill cheat or even 3 hit kill.
Here is a script i am already working on in "Lightning Returns: Final Fantasy 13"
Code: Select all
newmem:
cmp [esi+338],#22000
jne code
mov [esi+2E0],#3680 // health cap writing into current health
jmp return
code:
mov [esi+000002E0],0 // we put zero here for one hit kills
jmp return
mov [esi+000002E0],edi
jmp return
so how do i make it so that instead of 0, we write 1 into our enemies' health and the following hit kills him? if i simply replace the 0 with 1, that won't work. that will keep writing 1 into enemies' HP and their HP will only be equal to 1, i would have to deactivate the cheat to finish him off but i don't wanna do that. i need to learn to properly put it in code. any help is greatly appreciated!