ACE3/addons/ui_units/functions/fnc_speedInfo.sqf

10 lines
309 B
Plaintext
Raw Normal View History

2019-06-08 20:17:24 +00:00
#include "script_component.hpp"
params ["_unit"];
2019-06-12 05:11:02 +00:00
if (_unit isEqualTo SPEED_MPH) exitWith {[LLSTRING(Speed_MPH), KMH_TO_MPH]};
if (_unit isEqualTo SPEED_KNOT) exitWith {[LLSTRING(Speed_KNOT), KMH_TO_KNOT]};
if (_unit isEqualTo SPEED_MS) exitWith {[LLSTRING(Speed_MS), KMH_TO_MS]};
2019-06-08 20:17:24 +00:00
[LLSTRING(Speed_KMH), 1]