2015-03-24 04:18:00 +00:00
|
|
|
// by esteldunedain
|
2015-01-18 20:00:43 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-09-11 14:58:26 +00:00
|
|
|
if (!hasInterface) exitWith {};
|
2015-11-27 14:48:03 +00:00
|
|
|
GVAR(isSpeedLimiter) = false;
|
2015-01-18 20:00:43 +00:00
|
|
|
// Add keybinds
|
2015-05-28 19:59:04 +00:00
|
|
|
["ACE3 Vehicles", QGVAR(speedLimiter), localize LSTRING(SpeedLimiter),
|
2015-03-05 07:32:26 +00:00
|
|
|
{
|
2015-11-26 22:39:17 +00:00
|
|
|
private _connectedUAV = getConnectedUAV ACE_player;
|
|
|
|
private _uavControll = UAVControl _connectedUAV;
|
|
|
|
if ((_uavControll select 1) == "DRIVER") then {
|
|
|
|
if !(_connectedUAV isKindOf "UGV_01_base_F") exitWith {false};
|
|
|
|
GVAR(isUAV) = true;
|
|
|
|
[_uavControll select 0, _connectedUAV] call FUNC(speedLimiter);
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
// Conditions: canInteract
|
|
|
|
if !([ACE_player, objNull, ["isnotinside"]] call EFUNC(common,canInteractWith)) exitWith {false};
|
|
|
|
// Conditions: specific
|
|
|
|
if !(ACE_player == driver vehicle ACE_player &&
|
|
|
|
{vehicle ACE_player isKindOf 'Car' ||
|
|
|
|
{vehicle ACE_player isKindOf 'Tank'}}) exitWith {false};
|
|
|
|
|
|
|
|
GVAR(isUAV) = false;
|
|
|
|
// Statement
|
|
|
|
[ACE_player, vehicle ACE_player] call FUNC(speedLimiter);
|
|
|
|
true
|
|
|
|
};
|
2015-01-18 20:00:43 +00:00
|
|
|
|
2015-03-05 07:32:26 +00:00
|
|
|
},
|
2015-03-05 08:51:24 +00:00
|
|
|
{false},
|
2015-11-26 22:39:17 +00:00
|
|
|
[211, [false, false, false]], false] call CBA_fnc_addKeybind; //DELETE Key
|