2015-01-16 14:37:32 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2015-02-09 04:44:23 +00:00
|
|
|
requiredAddons[] = {"ace_interaction"};
|
2015-03-24 04:18:00 +00:00
|
|
|
author[] = {"commy2","esteldunedain"};
|
2015-01-16 14:37:32 +00:00
|
|
|
authorUrl = "https://github.com/commy2/";
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgEventHandlers.hpp"
|
2015-02-08 19:48:53 +00:00
|
|
|
#include "CfgSounds.hpp"
|
2015-01-16 14:37:32 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
|
|
|
|
2015-02-11 21:43:08 +00:00
|
|
|
class ACE_Settings {
|
2015-04-01 16:21:30 +00:00
|
|
|
//Time to move a round from one magazine to another
|
2015-02-11 21:43:08 +00:00
|
|
|
class GVAR(TimePerAmmo) {
|
|
|
|
value = 1.5;
|
|
|
|
typeName = "SCALAR";
|
|
|
|
};
|
2015-04-01 16:21:30 +00:00
|
|
|
//Time to swap between magazines when repacking
|
2015-02-11 21:43:08 +00:00
|
|
|
class GVAR(TimePerMagazine) {
|
|
|
|
value = 2.0;
|
|
|
|
typeName = "SCALAR";
|
|
|
|
};
|
2015-04-01 16:21:30 +00:00
|
|
|
//Time to relink 2 belts together
|
|
|
|
class GVAR(TimePerBeltLink) {
|
|
|
|
value = 8.0;
|
|
|
|
typeName = "SCALAR";
|
|
|
|
};
|
2015-01-16 14:37:32 +00:00
|
|
|
};
|