mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
52 lines
1.8 KiB
C++
52 lines
1.8 KiB
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
units[] = {};
|
|
weapons[] = {};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = { "ace_main", "ace_common" };
|
|
author[] = {"KoffeinFlummi"};
|
|
authorUrl = "https://github.com/KoffeinFlummi";
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
#include "CfgSounds.hpp"
|
|
#include "CfgWeapons.hpp"
|
|
|
|
class ACE_Default_Keys {
|
|
class adjustScopeUp {
|
|
displayName = "$STR_ACE_Scopes_AdjustUp";
|
|
condition = QUOTE([_player] call FUNC(inventoryCheck); [ARR_3(_player, 0, 0.1)] call FUNC(canAdjustScope););
|
|
statement = QUOTE([ARR_3(_player, 0, 0.1)] call FUNC(adjustScope););
|
|
allowHolding = 1;
|
|
key = 201;
|
|
shift = 0;
|
|
control = 0;
|
|
alt = 0;
|
|
};
|
|
class adjustScopeDown: adjustScopeUp {
|
|
displayName = "$STR_ACE_Scopes_AdjustDown";
|
|
condition = QUOTE([_player] call FUNC(inventoryCheck); [ARR_3(_player, 0, -0.1)] call FUNC(canAdjustScope););
|
|
statement = QUOTE([ARR_3(_player, 0, -0.1)] call FUNC(adjustScope););
|
|
key = 209;
|
|
};
|
|
class adjustScopeLeft: adjustScopeUp {
|
|
displayName = "$STR_ACE_Scopes_AdjustLeft";
|
|
condition = QUOTE([_player] call FUNC(inventoryCheck); [ARR_3(_player, -0.1, 0)] call FUNC(canAdjustScope););
|
|
statement = QUOTE([ARR_3(_player, -0.1, 0)] call FUNC(adjustScope););
|
|
key = 209;
|
|
control = 1;
|
|
};
|
|
class adjustScopeRight: adjustScopeLeft {
|
|
displayName = "$STR_ACE_Scopes_AdjustRight";
|
|
condition = QUOTE([_player] call FUNC(inventoryCheck); [ARR_3(_player, 0.1, 0)] call FUNC(canAdjustScope););
|
|
statement = QUOTE([ARR_3(_player, 0.1, 0)] call FUNC(adjustScope););
|
|
key = 201;
|
|
};
|
|
};
|
|
|
|
#include "RscTitles.hpp"
|