Melosx 27 Posted January 2, 2012 (edited) Skip Title Version: 1.0 Author: Melosx Release Date: 7/12/11 Introduction Skip the title screen. Script #============================================================================== # ** Skip_Title #============================================================================== # Author: Melosx # Version: 1.0 => 7/12/2011 # Release Date: 7/12/2011 # #------------------------------------------------------------------------------ # Instructions: # Copy this script under Materials and above Main. You MUST fill in the SETUP # section with the proper values for your project. Else your journey could # start in the wrong place. #============================================================================== class Skip_Title < Scene_Base #---------------------------------SETUP/--------------------------------# ID_MAPPA = 1 # ID of the map where your Player's Starting Point is COORDINATE_XY = [8, 6] # Player Starting Point X & Y cohordinates. [x,y] #----------------------------------/SETUP---------------------------------# def main start end def start SceneManager.clear DataManager.load_database $game_party.setup_starting_members $game_map.setup(ID_MAPPA) $game_player.moveto(COORDINATE_XY[0],COORDINATE_XY[1]) $game_player.refresh SceneManager.call(Scene_Map) $game_map.autoplay end end #============================================================================== # ** SceneManager #============================================================================== module SceneManager def self.first_scene_class $BTEST ? Scene_Battle : Skip_Title end end Edited March 15, 2012 by Melosx 2 SICKfudge and Ally reacted to this Share this post Link to post Share on other sites
+ Abscond 149 Posted January 2, 2012 Perfect. Just what I was looking for. Share this post Link to post Share on other sites
ShinGamix 101 Posted January 3, 2012 @Melosx go to google translate if you need to translate your notes in English. Also any member can do this too. It is very easy. 1 DarthVollis reacted to this Share this post Link to post Share on other sites
Melosx 27 Posted March 15, 2012 I've updated the first post with the english translation Share this post Link to post Share on other sites
Wazte 4 Posted November 25, 2012 This would be awesome if it would make the player skip the title screen untill the player has any saves Share this post Link to post Share on other sites
Andrian 0 Posted December 15, 2012 Okey,this script is so easy to made!!! thanks for your help!! (sorry if my english bad ) Share this post Link to post Share on other sites