2015-01-14 09:06:47 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-01-11 16:42:31 +00:00
|
|
|
class CfgPatches {
|
2015-02-14 06:39:01 +00:00
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_common"};
|
|
|
|
author[] = {"commy2", "KoffeinFlummi"};
|
|
|
|
authorUrl = "https://github.com/commy2/";
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2015-01-14 09:06:47 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgAmmo.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|
|
|
|
#include "CfgMagazines.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
2015-09-01 10:46:15 +00:00
|
|
|
|
|
|
|
#include "Effects.hpp"
|
2016-05-24 13:13:11 +00:00
|
|
|
|
|
|
|
class ACE_newEvents {
|
|
|
|
firedNonPlayer = "ace_firedNonPlayer";
|
|
|
|
firedPlayerNonLocal = "ace_firedPlayerNonLocal";
|
|
|
|
firedPlayer = "ace_firedPlayer";
|
2016-05-24 23:57:41 +00:00
|
|
|
flashbangExplosion = "ace_flashbangExploded";
|
2016-05-24 14:06:17 +00:00
|
|
|
};
|