Well, what script are you using to permit slip damage to bring HP lower than 1? You should tell the author of it that he/she overlooked this.
In any case, the following should probably work no matter what script you are trying to use, so long as that script does bring actors down to 0. Paste it above Main but below whatever slip damage scipt you're using:
#==============================================================================
# ** Game_Party
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Summary of Changes:
# aliased method - on_player_walk
#==============================================================================
class Game_Party
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# * On Party Walk
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
alias malg_mits_slipkill_onwalk_7uj1 on_player_walk
def on_player_walk (*args)
malg_mits_slipkill_onwalk_7uj1 (*args) # Run Original Method
$game_temp.next_scene = "gameover" if all_dead?
end
end
If it doesn't, then you need to link me to the script that isn't working.