2015-01-23 22:40:39 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-01-11 16:42:31 +00:00
|
|
|
class CfgPatches {
|
2015-01-23 22:40:39 +00:00
|
|
|
class ADDON {
|
2015-01-11 16:42:31 +00:00
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
2015-01-23 22:40:39 +00:00
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_common", "ace_interaction"};
|
2015-01-11 16:42:31 +00:00
|
|
|
author[] = {"PabstMirror"};
|
|
|
|
authorUrl = "https://github.com/PabstMirror/";
|
2015-01-23 22:40:39 +00:00
|
|
|
VERSION_CONFIG;
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-01-30 22:06:25 +00:00
|
|
|
class ACE_Settings {
|
|
|
|
class GVAR(DefaultLockpickStrength) {
|
|
|
|
value = 10;
|
|
|
|
typeName = "SCALAR";
|
|
|
|
};
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2015-01-23 22:40:39 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgMagazines.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|