enableSaving: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:ArmA 2: New Scripting Commands List\|{{uc:{{PAGENAME}}}}\]\]\s*" to "")
m (Add DescriptioN.ext - saving seeAlso link)
 
(36 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| arma2 |Game name=
|game1= arma2
|version1= 1.00


|1.00|Game version=
|game2= arma2oa
____________________________________________________________________________________________
|version2= 1.50


| Enable / disable saving of the game with an optional autosave. |DESCRIPTION=
|game3= tkoh
____________________________________________________________________________________________
|version3= 1.00


| [[enableSaving]] enable |SYNTAX=
|game4= arma3
|version4= 0.50


|p1= enable: [[Boolean]] |PARAMETER1=  
|gr1= Mission Information


| [[Nothing]] |RETURNVALUE=
|descr= Enable / disable saving of the game with an optional autosave.


____________________________________________________________________________________________
|s1= [[enableSaving]] enable


|s2= [[enableSaving]] [enable, save] |SYNTAX2=
|p1= enable: [[Boolean]]


|p21= enable: [[Boolean]] - allow manual saving |PARAMETER21=
|r1= [[Nothing]]


|p22= save: [[Boolean]] - create an autosave on command execution |PARAMETER22=
|s2= [[enableSaving]] [enable, save]


|r2= [[Nothing]] |RETURNVALUE2=
|p21= enable: [[Boolean]] - allow [[saveGame]] command usage and manual saving
____________________________________________________________________________________________


|x1= <code>[[enableSaving]] [[false]]; {{cc|saving disabled, does autosave - same as [<nowiki/>[[false]], [[true]]]}}
|p22= save: [[Boolean]] - create an autosave on command execution
[[enableSaving]] [[true]]; {{cc|saving enabled, doesn't autosave - same as [<nowiki/>[[true]], [[false]]]}}


[[enableSaving]] [<nowiki/>[[false]], [[false]]]; {{cc|saving disabled, doesn't autosave}}
|r2= [[Nothing]]
[[enableSaving]] [<nowiki/>[[false]], [[true]]]; {{cc|saving disabled, does autosave}}
[[enableSaving]] [<nowiki/>[[true]], [[false]]]; {{cc|saving enabled, doesn't autosave}}
[[enableSaving]] [<nowiki/>[[true]], [[true]]]; {{cc|saving enabled, does autosave}}
</code>|EXAMPLE1=
____________________________________________________________________________________________


| [[loadGame]], [[saveGame]], [[savingEnabled]] |SEEALSO=
|x1= <sqf>
}}
enableSaving false; // saving disabled, does autosave - same as [false, true]
enableSaving true; // saving enabled, does not autosave - same as [true, false]


<h3 style='display:none'>Notes</h3>
enableSaving [false, false]; // saving disabled, does not autosave
<dl class='command_description'>
enableSaving [false, true]; // saving disabled, does autosave
<!-- Note Section BEGIN -->
enableSaving [true, false]; // saving enabled, doesn't autosave
enableSaving [true, true]; // saving enabled, does autosave
</sqf>


<!-- Note Section END -->
|seealso= [[loadGame]] [[saveGame]] [[savingEnabled]] [[isSaving]] [[BIS_fnc_enableSaving]] {{Link|Description.ext#saving}}
</dl>
}}


<h3 style='display:none'>Bottom Section</h3>
{{Note
 
|user= POLPOX
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
|timestamp= 20230102114855
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
|text= Also possible to disable Save and Exit button from pause menu and replaces it with Abort. (confirmed in Arma 3 2.12)
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
}}
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]

Latest revision as of 01:04, 29 April 2023

Hover & click on the images for description

Description

Description:
Enable / disable saving of the game with an optional autosave.
Groups:
Mission Information

Syntax

Syntax:
enableSaving enable
Parameters:
enable: Boolean
Return Value:
Nothing

Alternative Syntax

Syntax:
enableSaving [enable, save]
Parameters:
enable: Boolean - allow saveGame command usage and manual saving
save: Boolean - create an autosave on command execution
Return Value:
Nothing

Examples

Example 1:
enableSaving false; // saving disabled, does autosave - same as [false, true] enableSaving true; // saving enabled, does not autosave - same as [true, false] enableSaving [false, false]; // saving disabled, does not autosave enableSaving [false, true]; // saving disabled, does autosave enableSaving [true, false]; // saving enabled, doesn't autosave enableSaving [true, true]; // saving enabled, does autosave

Additional Information

See also:
loadGame saveGame savingEnabled isSaving BIS_fnc_enableSaving Description.ext - saving

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
POLPOX - c
Posted on Jan 02, 2023 - 11:48 (UTC)
Also possible to disable Save and Exit button from pause menu and replaces it with Abort. (confirmed in Arma 3 2.12)