Is there a plugin or something that could let me disable the red flash that occurs when you take damage from Poison? Thanks!
Remove red flash when receiving floor/poison damage
● ARCHIVED · READ-ONLY
-
-
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); }; })(); -
I've moved this thread to Plugin Requests. Thank you.