mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
34 lines
864 B
Plaintext
34 lines
864 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Glowbal, Ruthberg
|
|
* Module for adjusting the wind deflection settings
|
|
*
|
|
* Arguments:
|
|
* 0: The module logic <LOGIC>
|
|
* 1: units <ARRAY>
|
|
* 2: activated <BOOL>
|
|
*
|
|
* Return Value:
|
|
* None <NIL>
|
|
*
|
|
* Example:
|
|
* [module, [], true] call ace_weather_fnc_initModuleSettings
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_logic", "_units", "_activated"];
|
|
|
|
if !(_activated) exitWith {};
|
|
|
|
// Turns the weather module on / off
|
|
[_logic, QGVAR(enabled), "enabled"] call EFUNC(common,readSettingFromModule);
|
|
|
|
// Server weather update interval
|
|
[_logic, QGVAR(updateInterval), "updateInterval"] call EFUNC(common,readSettingFromModule);
|
|
|
|
// Turns the (map based) wind simulation on / off
|
|
[_logic, QGVAR(windSimulation), "windSimulation"] call EFUNC(common,readSettingFromModule);
|
|
|
|
GVAR(updateInterval) = 1 max GVAR(updateInterval) min 600;
|