2015-06-29 02:34:21 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_common"};
|
2016-05-31 19:14:43 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {"F3 Project","Head","SilentSpike","voiper"};
|
2016-06-01 12:11:32 +00:00
|
|
|
PBO_URL;
|
2015-06-29 02:34:21 +00:00
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "ACE_Settings.hpp"
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
2015-07-15 10:38:33 +00:00
|
|
|
#include "ui\interface.hpp"
|
2015-08-03 20:38:44 +00:00
|
|
|
|
|
|
|
class CfgRespawnTemplates {
|
2015-08-04 21:11:34 +00:00
|
|
|
class ADDON {
|
|
|
|
onPlayerKilled = QFUNC(respawnTemplate);
|
|
|
|
onPlayerRespawn = QFUNC(respawnTemplate);
|
2015-08-03 20:38:44 +00:00
|
|
|
};
|
|
|
|
};
|