Chaos Project

RPG Maker => RPG Maker Scripts => Script Troubleshooting => Topic started by: Hellfire Dragon on June 30, 2009, 11:57:55 am

Title: [RESOLVED] Red flashy thing when poisoned
Post by: Hellfire Dragon on June 30, 2009, 11:57:55 am
How do I remove the red flashing when the player is poisoned? It's annoying. I checked Scene_Map and couldn't find it :P
Title: Re: Red flashy thing when poisoned
Post by: Aqua on June 30, 2009, 12:08:03 pm
Game_Party
Line 299
$game_screen.start_flash(Color.new(255,0,0,128), 4)

Remove it
Title: Re: Red flashy thing when poisoned
Post by: Hellfire Dragon on June 30, 2009, 12:34:39 pm
Never thought of checking Game_Party, was sure it was Game_Map :roll: oh well, thanks Aqua :)
Title: Re: [RESOLVED] Red flashy thing when poisoned
Post by: Aqua on June 30, 2009, 12:38:46 pm
Use CTRL + Shift + F to search within EVERY script
So all I did was search for slip damage, and it gave me line 290 of Game_Party as one of the places where it appears XD
  # * Slip Damage Check (for map)
Title: Re: [RESOLVED] Red flashy thing when poisoned
Post by: Hellfire Dragon on June 30, 2009, 12:55:54 pm
Never knew that, might come in handy some time :)