ACE3/addons/weather/functions/fnc_initModuleSettings.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

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;