Jump to content
lv1234

How to disable manual saves but keep triggered saves?

Recommended Posts

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

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

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.

  • Like 1

Share this post


Link to post
Share on other sites

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

 

  • Confused 1

Share this post


Link to post
Share on other sites
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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×