Page 1 of 1

Ability to update scenarios inside saves

Posted: Sun Jan 21, 2018 12:26 pm
by Gergely
I request the ability to update scenario scripts in saved games.
Why?
Currently, scenario scripts are stored with the saved game. However, this makes them unable to update when the scenario itself is updated.
I can't fix a bug in my scenario script and then continue my saved data with that script bug free.
What?
I request that when the game loads a saved data, instead of the script saved, the game loads the script from the scenario file if it is available, and the saved data is not being downloaded while connecting to a multiplayer server.

Re: Ability to update scenarios inside saves

Posted: Sun Jan 21, 2018 2:26 pm
by Klonan
Gergely wrote:I request the ability to update scenario scripts in saved games.
Why?
Currently, scenario scripts are stored with the saved game. However, this makes them unable to update when the scenario itself is updated.
I can't fix a bug in my scenario script and then continue my saved data with that script bug free.
What?
I request that when the game loads a saved data, instead of the script saved, the game loads the script from the scenario file if it is available, and the saved data is not being downloaded while connecting to a multiplayer server.
You can run a migration

Code: Select all

game.reload_script()
or, just unzip the save, and put the replace the outdated script

Re: Ability to update scenarios inside saves

Posted: Sun Jan 21, 2018 4:36 pm
by Gergely
Klonan wrote:You can run a migration

Code: Select all

game.reload_script()
Thanks. :roll: Did not see that one...