[RMMV] PARAMETERS + AND - HP (FLASHING RED WHEN YOU WALK)

Posts

Pages: 1
When you put the -HP to change the HP to something else for a game doesn't have a battle modes.
When your characters walk it flashes red how do I take red flashing off?
Marrend
Guardian of the Description Thread
21781
To the best of my knowledge, the screen would flash red while walking if there is a negative health regeneration value within the party, or, possibly, while walking on tiles that incur floor damage.

While I feel it's more likely the cause is walking over tiles with floor damage, it might also be possible that somebody in the party was inflicted with a poison-like status outside of combat. If memory serves me right, by default, this status includes a feature of negative health regeneration, can exist outside the context of battle, and has no automatic method of removing it.
In Game_Screen there is this function:
class Game_Screen
  #--------------------------------------------------------------------------
  # * Start Flash (for Poison/Damage Floor)
  #--------------------------------------------------------------------------
  def start_flash_for_damage
    start_flash(Color.new(255,0,0,128), 8)
  end
end


So you could probably override that to do nothing to prevent those flashes
Pages: 1