Remove red flash when receiving floor/poison damage

● ARCHIVED · READ-ONLY
Started by doodlebound 3 posts View original ↗
  1. Is there a plugin or something that could let me disable the red flash that occurs when you take damage from Poison? Thanks!
  2. Code:
    Game_Screen.prototype.startFlashForDamage = function() {
      this.startFlash([255, 0, 0, 128], 8);
    };

    That's the code that flashes the screen for the damage. You can comment out the startFlash method, but then it wouldn't work for damage floors either. The plugin would look like:
    Code:
    (function() {
       Game_Screen.prototype.startFlashForDamage = function() {
         // this.startFlash([255, 0, 0, 128], 8);
       };
    })();
  3. I've moved this thread to Plugin Requests. Thank you.