ACE3/addons/vehicles/XEH_postInit.sqf
2015-03-05 02:51:24 -06:00

23 lines
651 B
Plaintext

// by CAA-Picard
#include "script_component.hpp"
if !(hasInterface) exitWith {};
// Add keybinds
["ACE3", QGVAR(speedLimiter), localize "STR_ACE_SpeedLimiter",
{
// Conditions: canInteract
_exceptions = [];
if !(_exceptions call EGVAR(common,canInteract)) 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