openGPS: Difference between revisions
Jump to navigation
Jump to search
Killzone Kid (talk | contribs) No edit summary |
Lou Montana (talk | contribs) m (Arma 3 v2.03 → v2.04) |
||
Line 3: | Line 3: | ||
|game1= arma3 | |game1= arma3 | ||
|version1= 2. | |version1= 2.04 | ||
|gr1= Interaction | |gr1= Interaction | ||
Line 9: | Line 9: | ||
|descr= Opens or closes minimap if player has <tt>"ItemGPS"</tt> linked in inventory and <tt>"MinimapDisplayComponent"</tt> is not disabled with [[enableInfoPanelComponent]]. Returns [[true]] on success. If more than one minimap is open (see [[infoPanels]], [[infoPanel]]) each call to the command will close only 1 minimap. Visibility of minimap can be checked with [[visibleGPS]] command. | |descr= Opens or closes minimap if player has <tt>"ItemGPS"</tt> linked in inventory and <tt>"MinimapDisplayComponent"</tt> is not disabled with [[enableInfoPanelComponent]]. Returns [[true]] on success. If more than one minimap is open (see [[infoPanels]], [[infoPanel]]) each call to the command will close only 1 minimap. Visibility of minimap can be checked with [[visibleGPS]] command. | ||
|s1= | |s1= [[openGPS]] open | ||
|p1= open: [[Boolean]] - [[true]] to open, [[false]] to close | |p1= open: [[Boolean]] - [[true]] to open, [[false]] to close | ||
Line 19: | Line 19: | ||
|x2= To close all opened minimaps:<code>[[while]] { [[openGPS]] [[false]] } [[do]] { }; | |x2= To close all opened minimaps:<code>[[while]] { [[openGPS]] [[false]] } [[do]] { }; | ||
{{cc|or}} | |||
[[while]] { [[visibleGPS]] } [[do]] { [[openGPS]] [[false]] };</code> | [[while]] { [[visibleGPS]] } [[do]] { [[openGPS]] [[false]] };</code> | ||
|seealso= [[showGPS]] [[shownGPS]] [[visibleGPS]] | |seealso= [[showGPS]] [[shownGPS]] [[visibleGPS]] | ||
}} | }} |
Revision as of 14:42, 27 April 2021
Description
- Description:
- Opens or closes minimap if player has "ItemGPS" linked in inventory and "MinimapDisplayComponent" is not disabled with enableInfoPanelComponent. Returns true on success. If more than one minimap is open (see infoPanels, infoPanel) each call to the command will close only 1 minimap. Visibility of minimap can be checked with visibleGPS command.
- Groups:
- Interaction
Syntax
- Syntax:
- openGPS open
- Parameters:
- open: Boolean - true to open, false to close
- Return Value:
- Boolean - true on success
Examples
- Example 1:
player linkItem "ItemGPS"; private _success = openGPS true;
- Example 2:
- To close all opened minimaps:
while { openGPS false } do { }; // or while { visibleGPS } do { openGPS false };
Additional Information
- See also:
- showGPS shownGPS visibleGPS
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