Hi guys I am new to RPG maker and I would like to ask how can I skip the title screen when testing my maps? I often like to test my map 1by1 to check for passability issues and such and it's very cumbersome to have to go through the title screen everytime I do ctrl+r. Thanks!!
How to skip title screen?
● ARCHIVED · READ-ONLY
-
-
In your RMW plugins folder, included in the download or in your DLC folder in RMMV steam, there is one.
-
Yeah... there is a way to do that.
Note the main.js
//=============================================================================// main.js//=============================================================================PluginManager.setup($plugins);window.onload = function() { SceneManager.run(Scene_Boot);};What you need to do is change what scene runs first, or just straight-up edit main.js to straight up use a plugin to do so.
Yami_skiptitle.js
/*: * @plugindesc Skip the title scene for testing purpose. * @version 1.0 */(function() { Scene_Boot.prototype.start = function() { Scene_Base.prototype.start.call(this); SoundManager.preloadImportantSounds(); if (DataManager.isBattleTest()) { DataManager.setupBattleTest(); SceneManager.goto(Scene_Battle); } else { this.checkPlayerLocation(); DataManager.setupNewGame(); SceneManager.goto(Scene_Map); } this.updateDocumentTitle(); };})();vs the stock code:
Scene_Boot.prototype.start = function() { Scene_Base.prototype.start.call(this); SoundManager.preloadImportantSounds(); if (DataManager.isBattleTest()) { DataManager.setupBattleTest(); SceneManager.goto(Scene_Battle); } else if (DataManager.isEventTest()) { DataManager.setupEventTest(); SceneManager.goto(Scene_Map); } else { this.checkPlayerLocation(); DataManager.setupNewGame(); SceneManager.goto(Scene_Title); Window_TitleCommand.initCommandPosition(); } this.updateDocumentTitle();};Notice that the only line that changed is
SceneManager.goto(Scene_Title);Window_TitleCommand.initCommandPosition();Which changed to
Code:SceneManager.goto(Scene_Map); -
Thanks guys! This just made my life a lot easier