1
0
mirror of https://github.com/acemod/ACE3.git synced 2024-08-30 18:23:18 +00:00

vehicles: cba keybinds

This commit is contained in:
Nicolás Badano 2015-01-18 17:00:43 -03:00
parent b80cec4c18
commit d8d665cc03
3 changed files with 31 additions and 12 deletions

View File

@ -5,6 +5,12 @@ class Extended_PreInit_EventHandlers {
};
};
class Extended_PostInit_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_FILE(XEH_postInit));
};
};
class Extended_Engine_EventHandlers {
class Car {
class ACE_EngineStartDelay {

View File

@ -0,0 +1,25 @@
// by CAA-Picard
#include "script_component.hpp"
if !(hasInterface) exitWith {};
// Add keybinds
["ACE3",
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
},
[211, [false, false, false]],
false,
"keydown"
] call cba_fnc_registerKeybind;

View File

@ -16,15 +16,3 @@ class CfgPatches {
#include "CfgAmmo.hpp"
#include "CfgVehicles.hpp"
#include "CfgWeapons.hpp"
class ACE_Default_Keys {
class speedLimiter {
displayName = "$STR_ACE_SpeedLimiter";
condition = QUOTE(_player == driver _vehicle && {_vehicle isKindOf 'Car' || {_vehicle isKindOf 'Tank'}});
statement = QUOTE([ARR_2(_player, _vehicle)] call FUNC(speedLimiter));
key = 211;
shift = 0;
control = 0;
alt = 0;
};
};