OFPEC Forum

Editors Depot - Mission Editing and Scripting => Arma2 - Editing/Scripting General => Topic started by: maxjoiner on 26 Jul 2011, 14:42:49

Title: manage save
Post by: maxjoiner on 26 Jul 2011, 14:42:49
what can I do to manage save when I want?

ex: if I put in description "saving = 0", I'll can not change it.
I'd like to save only when I want, but not always, only with a command in script.
Is there a script or command to do this?
Title: Re: manage save
Post by: aLlamaWithARifle on 26 Jul 2011, 17:25:45
To save the game in a script or trigger you can simply use

Code: [Select]
savegame
Title: Re: manage save
Post by: Pirin on 26 Jul 2011, 18:20:34
As was answered over on BIS forums, you want to use enableSaving (http://community.bistudio.com/wiki/enableSaving)
Title: Re: manage save
Post by: maxjoiner on 27 Jul 2011, 08:22:39
Ok thanks for your reply.