ACE3/addons/vehicles/XEH_postInit.sqf

22 lines
671 B
Plaintext
Raw Normal View History

2015-03-24 04:18:00 +00:00
// by esteldunedain
2015-01-18 20:00:43 +00:00
#include "script_component.hpp"
if (!hasInterface) exitWith {};
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
{
// Conditions: canInteract
2015-04-14 21:13:02 +00:00
if !([ACE_player, objNull, ["isnotinside"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if !(ACE_player == driver vehicle ACE_player &&
{vehicle ACE_player isKindOf 'Car' ||
{vehicle ACE_player isKindOf 'Tank'}}) exitWith {false};
2015-01-18 20:00:43 +00:00
2015-03-05 07:32:26 +00:00
// Statement
[ACE_player, vehicle ACE_player] call FUNC(speedLimiter);
true
},
2015-03-05 08:51:24 +00:00
{false},
2015-03-05 07:32:26 +00:00
[211, [false, false, false]], false] call cba_fnc_addKeybind; //DELETE Key