By default, when you save a game, the title that is used is the title of
the game.
However, this isn't very useful. It would be better to show something more
relevant to the actual save file, such as a map location, or the current
chapter, or anything else.
With this plugin, you can use events to determine what the current save title
should be.
== Terms of Use ==
- Free for use in non-commercial projects with credits
- Contact me for commercial use
== Change Log ==
1.2 - Jan 27, 2016
Support for both literal and formula save titles
1.1 - Jan 11, 2016
save title supports formulas now
1.0 - Dec 31, 2015
initial release
== Usage ==
To set the save title, use the script call
TH.setSaveTitle( TITLE )
Where TITLE is any valid string. For example, if you want to set the save
title to "Chapter 1" you can write
TH.setSaveTitle("Chapter 1")
Then when you save the game, that will be the title that is shown.
-- Formula Save Titles --
By default, all save titles are saved as literal strings.
Whatever you write will be shown as the title.
However, the save title can be a formula. For example, if you want the save
title to be the name of the map that you're on, instead of having to set the
title everytime you enter a new map, you can write
TH.setSaveTitle("$gameMap.displayName()", true);
This will tell the game that you want to use a formula as the title.
And then the game will automatically ask for the map's name when it's saving.