#===============================================================================# N.A.S.T.Y. Movie when Title is Idle # Nelderson's Awesome Scripts To You## By: Nelderson# Last Updated: 11/26/2011## Version 1.0 - 11/26/2011##===============================================================================## Update History:# - Version 1.0 - Initial release, made for ShinGamix##===============================================================================# *Notes:# - This Script requires SuperOverlord's SOV ~ Videos script## - Compatible with Hanzo's Animated Title screen## - Make sure to fill out INTRO_VIDEO and TIME_TO_WAIT at the top!## - The controls from Overlord Dave's Script work just fine. So you can still# pause and back out with no problem!#===============================================================================#===============================================================================# Credits:## -Nelderson#===============================================================================module NEL #Must be in " " INTRO_VIDEO = "Highlight" # In Seconds - So 60 seconds = 1 minute....duhh TIME_TO_WAIT = 3 end#==============================================================================# ** Scene_Title#------------------------------------------------------------------------------# This class performs the title screen processing.#==============================================================================class Scene_Title < Scene_Base include(SOV::Video::Commands) alias nel_mov_title_strt start def start super nel_mov_title_strt @timer = 0 end alias nel_sup_title_up update def update super @timer += 1 nel_sup_title_up if @timer >= NEL::TIME_TO_WAIT * 60 @timer = 0 test = play_video(NEL::INTRO_VIDEO) play_two_video(test) end end def play_two_video(video) # Memorize and stop current bgm and bgs bgm = RPG::BGM.last bgs = RPG::BGS.last RPG::BGM.stop RPG::BGS.stop # Play video Video.play(video) # Restart bgm and bgs bgm.play bgs.play endend