ACE3/addons/kestrel4500/functions/fnc_updateImpellerState.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

21 lines
393 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Ruthberg
* Updates the Kestrel 4500 Impeller state
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
*
* 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 };