mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ffaa195fe5
* Fixed headers to work with silentspike python script * Fixed rest of the files * Fixed ace-team
60 lines
1.4 KiB
Plaintext
60 lines
1.4 KiB
Plaintext
/*
|
|
* Author: commy2
|
|
*
|
|
*
|
|
* Arguments:
|
|
* 0: String<STRING>
|
|
*
|
|
* Return Value:
|
|
* Array <ARRAY>
|
|
*
|
|
* Example:
|
|
* ["5"] call ace_vector_fnc_nextMode
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
switch (_this select 0) do {
|
|
case ("settings"): {
|
|
switch (GVAR(configTemp)) do {
|
|
case ([false, false]): {
|
|
GVAR(configTemp) = [false, true];
|
|
};
|
|
case ([false, true]): {
|
|
GVAR(configTemp) = [true, true];
|
|
};
|
|
case ([true, true]): {
|
|
GVAR(configTemp) = [true, false];
|
|
};
|
|
case ([true, false]): {
|
|
GVAR(configTemp) = [false, false];
|
|
};
|
|
};
|
|
|
|
[["meter", "feet"] select (GVAR(configTemp) select 0)] call FUNC(showText);
|
|
[["deg", "mil" ] select (GVAR(configTemp) select 1)] call FUNC(showText);
|
|
};
|
|
|
|
case ("config"): {
|
|
GVAR(configTemp) = GVAR(configTemp) + 1;
|
|
if (GVAR(configTemp) > 2) then {GVAR(configTemp) = 0};
|
|
|
|
switch (GVAR(configTemp)) do {
|
|
case (0): {
|
|
["eret"] call FUNC(showText);
|
|
["off"] call FUNC(showText);
|
|
};
|
|
case (1): {
|
|
["eret"] call FUNC(showText);
|
|
["on"] call FUNC(showText);
|
|
};
|
|
case (2): {
|
|
["nigt"] call FUNC(showText);
|
|
["on"] call FUNC(showText);
|
|
};
|
|
};
|
|
};
|
|
};
|