mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
28 lines
645 B
Plaintext
28 lines
645 B
Plaintext
|
/*
|
||
|
* Author: PabstMirror
|
||
|
* Takes some arguments and returns something or other.
|
||
|
*
|
||
|
* Arguments:
|
||
|
* 0: The first argument <STRING>
|
||
|
* 1: The second argument <OBJECT>
|
||
|
* 2: Third Optional Argument <BOOL><OPTIONAL>
|
||
|
*
|
||
|
* Return Value:
|
||
|
* The return value <BOOL>
|
||
|
*
|
||
|
* Example:
|
||
|
* _bool = ["something", player] call ace_common_fnc_imanexample
|
||
|
*
|
||
|
* Public: Yes
|
||
|
*/
|
||
|
#include "script_component.hpp"
|
||
|
|
||
|
_itemClicked = _this select 1;
|
||
|
|
||
|
switch (_itemClicked) do {
|
||
|
case (0): { GVAR(settingUseMils) = ! GVAR(settingUseMils)};
|
||
|
case (1): { GVAR(settingShowAllWaypointsOnMap) = ! GVAR(settingShowAllWaypointsOnMap)};
|
||
|
};
|
||
|
|
||
|
[] call FUNC(updateDisplay);
|