Chaos Project

RPG Maker => RPG Maker Scripts => Script Troubleshooting => Topic started by: Calintz on January 16, 2008, 12:44:13 am

Title: [RESOLVED] During battle, screen is too dark?? Lol...
Post by: Calintz on January 16, 2008, 12:44:13 am
All right, so here's what's going on...
I was checking out what the battlers were going to look like in-game, and I made a shocking discovery!!
I use screen color toning when mapping so that the environment looks more realistic right!! Natural.
Well, when I enter into a battle the screen color is way too dark for some reason, hold on...Look at it for yourselves, Lol...How can I possibly fix this?? Lol, never mind...I fixed this, but is still strikes me as a little humerous, so I'll leave it up...

When walking on the map
Spoiler: ShowHide
(http://i212.photobucket.com/albums/cc283/Derek16438/RMXP%20Screenshots/untitled.png)


When in Battle
Spoiler: ShowHide
(http://i212.photobucket.com/albums/cc283/Derek16438/RMXP%20Screenshots/untitled2.png)


When in Battle Fixed
Spoiler: ShowHide
(http://i212.photobucket.com/albums/cc283/Derek16438/RMXP%20Screenshots/untitled3-1.png)
Title: Re: [Resolved]During battle, screen is too dark?? Lol...
Post by: Nortos on January 16, 2008, 12:53:22 am
yeah I know it's like that when use Blizz'sd DDNS as well? I was gonna get round to fixing mine but how did you do it?
Title: Re: [Resolved]During battle, screen is too dark?? Lol...
Post by: Blizzard on January 16, 2008, 06:32:00 am
class Scene_Battle
 
  alias main_tint_fix main
  def main
    tone = $game_screen.tone.clone
    $game_screen.start_tone_change(Tone.new(0, 0, 0, 0), 0)
    main_tint_fix
    $game_screen.start_tone_change(tone, 0)
  end
 
end

Goes above main, below RTP scripts, below SDK, below custom scripts.
Title: Re: [Resolved]During battle, screen is too dark?? Lol...
Post by: Nortos on January 16, 2008, 06:32:37 am
ohhh ty for that Blizz :) you should pot it on your hints thread if it isn't already there
Title: Re: [Resolved]During battle, screen is too dark?? Lol...
Post by: Fantasist on January 16, 2008, 07:48:37 am
Offtopic:
Nice map Calintz :)
Title: Re: [Resolved]During battle, screen is too dark?? Lol...
Post by: Blizzard on January 16, 2008, 08:22:09 am
Yeah, and cool battlers.
Title: Re: [Resolved]During battle, screen is too dark?? Lol...
Post by: Nortos on January 16, 2008, 05:34:52 pm
yeah cept for Arshes lol
Title: Re: [Resolved]During battle, screen is too dark?? Lol...
Post by: Calintz on January 16, 2008, 06:12:15 pm
Umm...
I just set a new screen tone on the specific troops in the database, and I have it for the span of the battle, and occurs on turn 0 +0x...I like way better than that script, because it's easier to just use the event system, rather than the script, because I can change the background for specific monsters in specific areas without the tone always beiing the same... ;D