mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
10 lines
292 B
Plaintext
10 lines
292 B
Plaintext
#include "script_component.hpp"
|
|
|
|
params ["_unit"];
|
|
|
|
if (_unit isEqualTo SPEED_MPH) exitWith {[LLSTRING(Speed_MPH), 1.609]};
|
|
if (_unit isEqualTo SPEED_KNOT) exitWith {[LLSTRING(Speed_KNOT), 1.852]};
|
|
if (_unit isEqualTo SPEED_MS) exitWith {[LLSTRING(Speed_MS), 3.6]};
|
|
|
|
[LLSTRING(Speed_KMH), 1]
|