Indie Dev

Hello Guest!. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, sell your games, upload content, as well as connect with other members through your own private inbox!

MV Move text on title screen

Xyphien

Owner
Staff member
Administrator
Resource Team
Xy$
9.57
8100

How would you go about moving the box, so it looks something like the following:8101
 

CT_Bolt

Global Moderator
Staff member
Resource Team
Xy$
0.02
In rpg_windows.js without using plugins you can change the following...
JavaScript:
Window_TitleCommand.prototype.updatePlacement = function() {
    this.x = (Graphics.boxWidth - this.width) / 2;
    this.y = Graphics.boxHeight - this.height - 96;
};
To something like this:
JavaScript:
Window_TitleCommand.prototype.updatePlacement = function() {
    this.x = (Graphics.boxWidth - this.width) - 100;
    this.y = (Graphics.boxHeight - this.height) - 12;
};
Found on line 5746 in rpg_windows.js

Edit:
Now I've also made a plugin... (cute)
CTB Title System Plugin (CTB_Title.js): Click Here to Download
Gonna upload it to the resources soon once I add a few more options. (wink)

Edit2:
Alternatives:
 

Attachments

Last edited:
Top