2015-01-11 18:24:19 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
2015-04-06 16:22:43 +00:00
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2015-04-09 11:23:29 +00:00
|
|
|
requiredAddons[] = {"ace_common"};
|
2015-04-06 16:22:43 +00:00
|
|
|
author[] = {"Nou"};
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
2015-01-11 18:24:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgEventhandlers.hpp"
|
2015-04-26 21:14:54 +00:00
|
|
|
#include "CfgAmmo.hpp"
|
2016-05-24 13:13:11 +00:00
|
|
|
#include "ACE_Settings.hpp"
|
|
|
|
class ACE_newEvents {
|
|
|
|
SettingsInitialized = "ace_settingsInitialized";
|
|
|
|
firedNonPlayerVehicle = "ace_firedNonPlayerVehicle";
|
|
|
|
firedPlayerVehicleNonLocal = "ace_firedPlayerVehicleNonLocal";
|
|
|
|
firedPlayerVehicle = "ace_firedPlayerVehicle";
|
|
|
|
firedNonPlayer = "ace_firedNonPlayer";
|
|
|
|
firedPlayerNonLocal = "ace_firedPlayerNonLocal";
|
|
|
|
firedPlayer = "ace_firedPlayer";
|
|
|
|
};
|