How do I change the text shown on the save screen?

chiithecat

Veteran
Veteran
Joined
Sep 14, 2019
Messages
59
Reaction score
25
First Language
Korean
Primarily Uses
RMMV
I've been making changes in the window.js file to make my save screen look a little different.
How can I change the text I've highlighted red?
I don't want any change in font or size, I just want to write something else like "Memories" or "Record your memories" instead of "Save to which file?".
There is my window.js file below the picture.

[ code ]
캡처1.PNG



[ code ]
// Window_SavefileList
//
// The window for selecting a save file on the save and load screens.

function Window_SavefileList() {
this.initialize.apply(this, arguments);
}

Window_SavefileList.prototype = Object.create(Window_Selectable.prototype);
Window_SavefileList.prototype.constructor = Window_SavefileList;

Window_SavefileList.prototype.initialize = function(x, y, width, height) {
Window_Selectable.prototype.initialize.call(this, x, y, width, height);
this.activate();
this._mode = null;
};

Window_SavefileList.prototype.setMode = function(mode) {
this._mode = mode;
};

Window_SavefileList.prototype.maxItems = function() {
return DataManager.maxSavefiles();
};

Window_SavefileList.prototype.maxVisibleItems = function() {
return 3;
};

Window_SavefileList.prototype.itemHeight = function() {
var innerHeight = this.height - this.padding * 2;
return Math.floor(innerHeight / this.maxVisibleItems());
};

Window_SavefileList.prototype.drawItem = function(index) {
var id = index + 1;
var valid = DataManager.isThisGameFile(id);
var info = DataManager.loadSavefileInfo(id);
var rect = this.itemRectForText(index);
this.resetTextColor();
if (this._mode === 'load') {
this.changePaintOpacity(valid);
}
this.drawFileId(id, rect.x, rect.y + 20);
if (info) {
this.changePaintOpacity(valid);
this.drawContents(info, rect, valid);
this.changePaintOpacity(true);
}
};

Window_SavefileList.prototype.drawFileId = function(id, x, y) {
this.drawText(id + '번째 기억', x, y, 180);
};

Window_SavefileList.prototype.drawContents = function(info, rect, valid) {
var bottom = rect.y + rect.height;
if (rect.width >= 420) {
this.drawGameTitle(info, rect.x + 192, rect.y, rect.width - 192);
if (valid) {
this.drawPartyCharacters(info, rect.x + 220, bottom - 35);
}
}
var lineHeight = this.lineHeight();
var y2 = bottom - lineHeight;
if (y2 >= lineHeight) {
this.drawPlaytime(info, rect.x, y2 - 100, rect.width);
}
};

Window_SavefileList.prototype.drawGameTitle = function(info, x, y, width) {
if (info.title) {
this.drawText(info.title, x, y, width);
}
};

Window_SavefileList.prototype.drawPartyCharacters = function(info, x, y) {
if (info.characters) {
for (var i = 0; i < info.characters.length; i++) {
var data = info.characters;
this.drawCharacter(data[0], data[1], x + i * 48, y);
}
}
};

Window_SavefileList.prototype.drawPlaytime = function(info, x, y, width) {
if (info.playtime) {
this.drawText(info.playtime, x, y, width, 'right');
}
};

Window_SavefileList.prototype.playOkSound = function() {
};

[/ code]
 
Last edited:

chiithecat

Veteran
Veteran
Joined
Sep 14, 2019
Messages
59
Reaction score
25
First Language
Korean
Primarily Uses
RMMV
Sorry for not making a Spoiler. I tried, inserted a spoiler, but it doesn't work. :(
 

fizzly

Veteran
Veteran
Joined
Mar 23, 2012
Messages
744
Reaction score
474
First Language
Polish
Primarily Uses
RMMV
You can change it directly in program, just go to database and strings tab.
 

estriole

Veteran
Veteran
Joined
Jun 27, 2012
Messages
1,316
Reaction score
537
First Language
indonesian
Sorry for not making a Spoiler. I tried, inserted a spoiler, but it doesn't work. :(
instead of [ spoiler ][/ spoiler ] you could add it with [ code ] [/ code]
remove the spaces between (i type it that way so it won't become spoiler or code box) :D
 

chiithecat

Veteran
Veteran
Joined
Sep 14, 2019
Messages
59
Reaction score
25
First Language
Korean
Primarily Uses
RMMV
instead of [ spoiler ][/ spoiler ] you could add it with [ code ] [/ code]
remove the spaces between (i type it that way so it won't become spoiler or code box) :D
I've tried and I've failed.
Look what I've done lol
 

chiithecat

Veteran
Veteran
Joined
Sep 14, 2019
Messages
59
Reaction score
25
First Language
Korean
Primarily Uses
RMMV
You can change it directly in program, just go to database and strings tab.
oh myyyyyyyyyyyyyyyy I've never thought of it being in-game I thought I had to adjust the script!!!!
Thanks a lot :)
 

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