New account registration is temporarily disabled.

[RMMZ] BEFORE THE TITLE SCREEN PASSWORD INPUT

Posts

Pages: 1
Is it possible for a plugin or a script allow you to input a password before the title screen opens up? I've seen some plugins for RPGM 2k3 and some others but is there one for MZ?

Like before the the Title Screen goes up there's a pop-out that will tell you that there is a password you have to use for you to go to the title screen you get the password in a specific amount of times wrong the game will automatically delete itself from your memory.

Get the password right and you will be placed on the title screen of the game but there are different passwords that can be inputed for different changes like in gameplay, title screen, text, and etc.

I'm just asking if its possible to do this with a script or a plugin or if there is something that is somewhat similar to what I said here. Appreciated if someone were to reply about this.

(P.S : I know it's a bit like terrible game design but I am trying to mimic how a computer/laptop boots up)
Marrend
Guardian of the Description Thread
21806
I've a particular sense that Scene_Boot.startNormalGame...

Scene_Boot.prototype.startNormalGame = function() {
    this.checkPlayerLocation();
    DataManager.setupNewGame();
    SceneManager.goto(Scene_Title);
    Window_TitleCommand.initCommandPosition();
};


...might be something to look into. I think what I would do is define a "Scene_Login" class to be the "log-in screen", then replace the line that says...

SceneManager.goto(Scene_Title);


...this with...

SceneManager.goto(Scene_Login);


...this. I'm not quite prepared to look up what "Scene_Login" would actually look like, though.
Probably something like Scene_NameInput (which is the "name input processing" screen).

Also remember you can skip the title screen and event both your boot sequence and the "title screen" on a map.
author=coelocanth
Probably something like Scene_NameInput (which is the "name input processing" screen).

Also remember you can skip the title screen and event both your boot sequence and the "title screen" on a map.


so i can put the title screen as the password screen instead?
Pages: 1