mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
663 B
Plaintext
22 lines
663 B
Plaintext
// by esteldunedain
|
|
#include "script_component.hpp"
|
|
|
|
if !(hasInterface) exitWith {};
|
|
|
|
// Add keybinds
|
|
["ACE3", QGVAR(speedLimiter), localize "STR_ACE_SpeedLimiter",
|
|
{
|
|
// 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};
|
|
|
|
// Statement
|
|
[ACE_player, vehicle ACE_player] call FUNC(speedLimiter);
|
|
true
|
|
},
|
|
{false},
|
|
[211, [false, false, false]], false] call cba_fnc_addKeybind; //DELETE Key
|