ACE3/addons/kestrel4500/functions/fnc_updateImpellerState.sqf
2015-04-13 11:53:19 +02:00

23 lines
413 B
Plaintext

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