RPG Maker MV

RPG Maker MV

评价数不足
Quicker Playtests: How to disable the title screen
由 thesja 制作
A game creator playtests his project countless times. Disabling the menu screen to jump right into the game can save a few seconds. Over time this will add up to hours. Here's how you do it:
   
奖励
收藏
已收藏
取消收藏
We need a plugin!


There's no direct way to hide the title screen. There's no Hide Title checkbox or anything. So we need a Plugin for this! Luckly, a user named Yami already did the job and made a plugin to skip the title screen.
You have two options: Navigate through your RPG Maker MV folders or create the plugin by yourself. (You could also just do a quick Google search but that's no fun)


Copy the plugin from you dlc folder

Navigate to your steam directory where you've installed RPG Maker MV. In there go to the Yami folder at
->Steam -> steamapps -> common -> RPG Maker MV -> dlc -> RPGmakerWeb_plugins ->Yami

In there, find the plugin named Yami_SkipTitle.js and copy it to your project's plugin folder. Turn it on and you're done!


Create the plugin

You can create a new .txt file using the Windows Editor. Copy the code below into the text file and save it as a .js into your project's plugin folder.
/*: * @plugindesc Disables the title menu screen. */ (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(); }; })();