lv1234 75 Posted June 20, 2018 So far i have tried this on my scenario enableSaving [false, true]; but i still have the option to manually save.. Share this post Link to post Share on other sites
7erra 629 Posted June 21, 2018 Depending on how you trigger the triggered saves you could do this: //mission start: enableSaving [ false, false ]; //trigger (or whenever you want to save) enableSaving true; enableSaving [false,true]; Share this post Link to post Share on other sites
Floof 57 Posted June 21, 2018 Do you have any mods enabled? Just tested and works fine for disabling/enabling saving. Test on a fresh mission to see if it works. 1 Share this post Link to post Share on other sites
HazJ 1289 Posted June 21, 2018 Why not just: enableSaving [ true, false ]; // Saving enabled without autosave. Alternative Syntax Syntax: enableSaving [enable, save] Parameters: [enable, save]: Array enable: Boolean - allow manual saving save: Boolean - create autosave 1 Share this post Link to post Share on other sites
7erra 629 Posted June 21, 2018 1 hour ago, HazJ said: enableSaving [ true, false ]; // Saving enabled without autosave. Because this is exactly what he doesn't want as far as I understood? The first parameter ist manual saving (escape menu save) while the second one is creating an autosave when the command is issued. Share this post Link to post Share on other sites
HazJ 1289 Posted June 21, 2018 I put it the wrrong way... https://community.bistudio.com/wiki/enableSaving Share this post Link to post Share on other sites