Hi, there is some way to just hit the F12 and see the map without the load of the title screen? is annoying see this title screen every time i want to test my game...
I know there is a Title Button that make it on RPG Maker 2003, but i didn't see nothing like this in the XVA
How can I disable the Title Screen (like the Title Button in RPG Maker 2003)
● ARCHIVED · READ-ONLY
-
-
New script, put under materials but above main in Script Editor. To make a new slot, press insert from your keyboard.
Code:#==============================================================================# Skip Title Screen JV Master Script#------------------------------------------------------------------------------# Skip Title Screen, going to first game map.#============================================================================== #==============================================================================# Scene Title#==============================================================================class Scene_Title < Scene_Base def start SceneManager.clear Graphics.freeze DataManager.setup_new_game $game_map.autoplay SceneManager.goto(Scene_Map) end def terminate SceneManager.snapshot_for_background Graphics.fadeout(Graphics.frame_rate) endend#============================================================================== -
Unfortunately, this would stop you calling up the title screen via Game End > to Title
But if you only wanted to enable it while testing and disable it when you want to play properly, it'd do. -
That's it!! Thanks a lot bros! :D