1
0
mirror of https://github.com/acemod/ACE3.git synced 2024-08-30 18:23:18 +00:00
ACE3/addons/kestrel4500/functions/fnc_updateImpellerState.sqf

22 lines
441 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Ruthberg
* Updates the Kestrel 4500 Impeller state
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* call ace_kestrel4500_fnc_updateImpellerState
*
* Public: No
*/
private _windSpeed = call FUNC(measureWindSpeed);
GVAR(ImpellerState) = GVAR(ImpellerState) + (ceil(_windSpeed) min 1) max _windSpeed;
if (GVAR(ImpellerState) > 1000) then { GVAR(ImpellerState) = 0 };