openMap: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|x([0-9]) *= * <code>([^<]*)<\/code>" to "|x$1= <sqf>$2</sqf>")
m (Some wiki formatting)
Line 19: Line 19:
|gr2= Interaction
|gr2= Interaction


|descr= Opens or closes in-game map.{{Feature | Warning | If {{hl|forced}} param is set to [[true]] and map is set to open, when the map is opened it cannot be closed manually and the user can get stuck requiring the game restart. Make sure you provide scripted mechanics to resolve this, should you need to force the map. Useful when you wish to keep user for example on respawn screen, where they could still interact with the map but cannot enter the game until the time is up
|descr= Opens or closes in-game map.
<br>
{{Feature|warning|
Since Arma 3 v2.06.147984 the alternative syntax has the following functionality:
If {{hl|forced}} param is set to [[true]] and map is set to open, when the map is opened it cannot be closed manually and the user can get stuck requiring the game restart.
* [[openMap]] <nowiki>[</nowiki>[[true]], [[false]]] - opens map normally
Make sure you provide scripted mechanics to resolve this, should you need to force the map.
* [[openMap]] <nowiki>[</nowiki>[[false]], [[false]]] - closes opened map normally
Useful when you wish to keep user for example on respawn screen, where they could still interact with the map but cannot enter the game until the time is up.
* [[openMap]] <nowiki>[</nowiki>[[true]], [[true]]] - force opens map and keeps open (the user cannot close it on their own)
}}
''New''
* [[openMap]] <nowiki>[</nowiki>[[false]], [[true]]] - prevents map from opening, closes open map and forces it to stay close (the user cannot open it on their own)}}


|s1= [[openMap]] show
|s1= [[openMap]] show
Line 38: Line 36:
|p21= show: [[Boolean]] - if [[true]] opens map, if [[false]] closes map, provided it is not ''forced''.
|p21= show: [[Boolean]] - if [[true]] opens map, if [[false]] closes map, provided it is not ''forced''.


|p22= forced: [[Boolean]] - if [[true]] keeps map from closing when map is open. Arma 3 v2.06.147984, if [[false]], forces map to stay closed if 'show' is [[false]] (see description)
|p22= forced: [[Boolean]] - if [[true]] keeps map from closing when map is open. {{GVI|arma3|2.06|size= 0.75}} if [[false]], forces map to stay closed if ''show'' is [[false]] (see {{Link|#Example 1}})


|r2= [[Boolean]] - equivalent of [[visibleMap]]
|r2= [[Boolean]] - equivalent of [[visibleMap]]


|x1= <sqf>openMap true;</sqf>
|x1= <sqf>
 
openMap [true, false]; // opens map normally
|x2= <sqf>openMap [true, true];</sqf>
openMap [false, false]; // closes an opened map normally
openMap [true, true]; // force opens map and keeps it open (the user cannot close it on their own)
openMap [false, true]; // since Arma 3 2.06: prevents map from opening, closes open map and forces it to stay close (the user cannot open it on their own)
</sqf>


|seealso= [[forceMap]] [[forcedMap]] [[visibleMap]] [[showMap]] [[shownMap]]
|seealso= [[forceMap]] [[forcedMap]] [[visibleMap]] [[showMap]] [[shownMap]]
Line 53: Line 54:
|timestamp= 20211208110058
|timestamp= 20211208110058
|text= ('''As of Arma 3 ver.2.06.148470''') <br>
|text= ('''As of Arma 3 ver.2.06.148470''') <br>
Trying to close a map using 'closeMap false' inside of a map event handler like <br>
Trying to close a map using <sqf inline>openMap false</sqf> inside of a map event handler like
''''addMissionEventHandler["Map",{closeMap false}];'''' <br>
<sqf>addMissionEventHandler ["Map", { openMap false }];</sqf>
will cause the game to crash.<br>
will cause the game to crash.<br>
To fix this, please use it inside of a spawned script.<br>
To fix this, please use it inside of a spawned script.
Ex. ''''addMissionEventHandler["Map",{[] spawn {closeMap false};}];''''<br>
<sqf>addMissionEventHandler ["Map", { 0 spawn { openMap false }; }];</sqf>
<br>
<br>
This should stop any issue of crashing when you close the map.
This should stop any issue of crashing when you close the map.
}}
}}

Revision as of 10:49, 3 October 2023

Hover & click on the images for description

Description

Description:
Opens or closes in-game map.
If forced param is set to true and map is set to open, when the map is opened it cannot be closed manually and the user can get stuck requiring the game restart.

Make sure you provide scripted mechanics to resolve this, should you need to force the map.

Useful when you wish to keep user for example on respawn screen, where they could still interact with the map but cannot enter the game until the time is up.
Groups:
MapInteraction

Syntax

Syntax:
openMap show
Parameters:
show: Boolean - if true opens map, if false closes map, provided it is not forced
Return Value:
Boolean - equivalent of visibleMap

Alternative Syntax

Syntax:
openMap [show, forced]
Parameters:
show: Boolean - if true opens map, if false closes map, provided it is not forced.
forced: Boolean - if true keeps map from closing when map is open. Arma 3 logo black.png2.06 if false, forces map to stay closed if show is false (see Example 1)
Return Value:
Boolean - equivalent of visibleMap

Examples

Example 1:
openMap [true, false]; // opens map normally openMap [false, false]; // closes an opened map normally openMap [true, true]; // force opens map and keeps it open (the user cannot close it on their own) openMap [false, true]; // since Arma 3 2.06: prevents map from opening, closes open map and forces it to stay close (the user cannot open it on their own)

Additional Information

See also:
forceMap forcedMap visibleMap showMap shownMap

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
Fraali - c
Posted on Dec 08, 2021 - 11:00 (UTC)
(As of Arma 3 ver.2.06.148470)
Trying to close a map using openMap false inside of a map event handler like
addMissionEventHandler ["Map", { openMap false }];
will cause the game to crash.
To fix this, please use it inside of a spawned script.
addMissionEventHandler ["Map", { 0 spawn { openMap false }; }];

This should stop any issue of crashing when you close the map.