Heya!
So let's get to the point, what I'm trying to do is renaming the auto-save file in-game. Not having the player rename the file, but renaming it myself.
The auto-save script I'm using is this one: https://www.rpgmakercentral.com/topic/18917-basic-autosave/
My question is, would there be a script call for that? I'm planning to rename the autosave several times depending on the occasion, so just changing the name in the script itself wouldn't really work.
Would be great if someone could help me! Thank you and have a nice day!~ :)
(Ace) Renaming Auto-save File in-game
● ARCHIVED · READ-ONLY
-
-
Change Line 63 to specify a game variable
Code:Then put a number for the variable you want to use at the topif @file_index == 0 name = $game_variables[AUTOSAVE_FILE_NAME] else
Code:When you start the game, set the variable to a value. Script =-> "Autosave"AUTOSAVE_FILE_NAME = 50
Then change the variable data whenever you want.