Jump to content
Sign in to follow this  
Drumheller

Why are my SP missions only allowing one save?

Recommended Posts

Hey guys.

I'm playing through a mission that I made and for some reason it's only allowing one save...

I made it in the multiplayer editor and exported it to single player. Could that have something to do with it? When I play the MP version of the map I can save as many times as I want.

I made a couple of changes between the 2 versions such as taking out ace medical and all respawn and respawn points for single player.

Share this post


Link to post
Share on other sites

...because you play veteran or Profi difficulty...unlimited safes is just with recruit or cadet difficulty.

Share this post


Link to post
Share on other sites

Oh... hah....

That'll learn me to up the difficulty. Thanks!

And it's called "regular" in America to make us feel better about ourselves :p

Share this post


Link to post
Share on other sites

is it possible to make a script that will allow player to save again manually?

I know that player can Alt+Tab game, delete old save game and save again (yes, yes I know it is cheating...). Now, is it possible to do this with script? Or something similar?

For example, player enters the trigger (which is safe zone i.e.), then it autosaves (saveGame), but it also enables manual saving. I tried enableSaving, but it doesn't work (or I am doing something wrong).

Thanx for help

Share this post


Link to post
Share on other sites

Yes

From my series of missions (allows player to save via map menu):

if(!isMultiplayer) then

{

if(!(player diarySubjectExists "Save")) then

{

player CreateDiarySubject ["Save", "Save Game"]; //do not localize first item!

player CreateDiaryRecord ["Save",["Save Game", "<execute expression="saveGame;"">Save Game</execute&gt]];

};

};

disclaimer: haven't tried saving multiple times though :)

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
Sign in to follow this  

×