How to skip title screen?

vanyr

Warper
Member
Joined
Nov 12, 2015
Messages
2
Reaction score
0
First Language
alibata
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!!
 

Archeia

Level 99 Demi-fiend
Developer
Joined
Mar 1, 2012
Messages
15,144
Reaction score
15,478
First Language
Filipino
Primarily Uses
RMMZ
In your RMW plugins folder, included in the download or in your DLC folder in RMMV steam, there is one.
 

KisaiTenshi

Veteran
Veteran
Joined
Oct 24, 2015
Messages
310
Reaction score
124
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);
 
Last edited by a moderator:

vanyr

Warper
Member
Joined
Nov 12, 2015
Messages
2
Reaction score
0
First Language
alibata
Thanks guys! This just made my life a lot easier
 

Users Who Are Viewing This Thread (Users: 0, Guests: 1)

Latest Threads

Latest Posts

Latest Profile Posts

Our latest feature is an interview with... me?!

People4_2 (Capelet off and on) added!

Just beat the last of us 2 last night and starting jedi: fallen order right now, both use unreal engine & when I say i knew 80% of jedi's buttons right away because they were the same buttons as TLOU2 its ridiculous, even the same narrow hallway crawl and barely-made-it jump they do. Unreal Engine is just big budget RPG Maker the way they make games nearly identical at its core lol.
Can someone recommend some fun story-heavy RPGs to me? Coming up with good gameplay is a nightmare! I was thinking of making some gameplay platforming-based, but that doesn't work well in RPG form*. I also was thinking of removing battles, but that would be too much like OneShot. I don't even know how to make good puzzles!
one bad plugin combo later and one of my followers is moonwalking off the screen on his own... I didn't even more yet on the new map lol.

Forum statistics

Threads
106,035
Messages
1,018,450
Members
137,820
Latest member
georg09byron
Top