Chaos Project

RPG Maker => RPG Maker Scripts => Script Requests => Topic started by: TrueCynder on January 05, 2014, 02:13:54 pm

Title: Transition after battle ?
Post by: TrueCynder on January 05, 2014, 02:13:54 pm
Hey there i was wondering if there is a way to have the same Transition
after a battle then before .

It just fades out which is kinda bleh
so is there by any chance a script allready or is it somehow (with event commands) doable ?

please let me know
Title: Re: Transition after battle ?
Post by: KK20 on January 05, 2014, 06:01:08 pm
In Scene_Battle, you can modify

    # If switching to title screen
    if $scene.is_a?(Scene_Title)
      # Fade out screen
      Graphics.transition  #<================ This line here
      Graphics.freeze
    end

into something like

Graphics.transition(40, "Graphics/Transitions/YOURFILENAMEHERE.png")

If using a custom battle system, which you are, you will need to locate something similar to this yourself in that script.
Title: Re: Transition after battle ?
Post by: TrueCynder on January 05, 2014, 06:33:32 pm
i found the part in the costum battle script
but it still is just a fade out  :O.o:
Title: Re: Transition after battle ?
Post by: KK20 on January 05, 2014, 06:43:42 pm
:facepalm: I swear, I read that as Scene_Map, not Scene_Title.


   # If switching to title screen
   if $scene.is_a?(Scene_Title)
     # Fade out screen
     Graphics.transition
     Graphics.freeze
   else
     Graphics.transition(40, "Graphics/Transitions/YOURFILENAMEHERE.png")
      Graphics.freeze
   end
Title: Re: Transition after battle ?
Post by: TrueCynder on January 05, 2014, 07:04:59 pm
i-im sorry :S it works now tho
thanks alot   :shy: