2019-06-08 04:48:37 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
|
|
|
name = COMPONENT_NAME;
|
2021-03-17 20:48:47 +00:00
|
|
|
units[] = {"ace_dragon_staticAssembled"};
|
|
|
|
weapons[] = {"ace_dragon_super","ace_dragon_sight"};
|
2019-06-08 04:48:37 +00:00
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2019-07-05 22:57:22 +00:00
|
|
|
requiredAddons[] = {"ace_hot","ace_csw"};
|
2019-06-08 04:48:37 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {"Brandon (TCVM)"};
|
|
|
|
url = ECSTRING(main,URL);
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "ACE_GuidanceConfig.hpp"
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|
|
|
|
#include "CfgMagazines.hpp"
|
|
|
|
#include "CfgAmmo.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
|
|
|
|
|
|
|
class GVAR(serviceExplosion) {
|
|
|
|
class Light1 {
|
|
|
|
simulation = "light";
|
|
|
|
type = "GrenadeExploLight";
|
|
|
|
position[] = {0,0,0};
|
|
|
|
intensity = 0.005;
|
|
|
|
interval = 1;
|
|
|
|
lifeTime = 0.5;
|
|
|
|
};
|
|
|
|
class GrenadeSmoke1 {
|
|
|
|
simulation = "particles";
|
|
|
|
type = "ImpactSmoke2";
|
|
|
|
position[] = {0,0,0};
|
|
|
|
intensity = 0.15;
|
|
|
|
interval = 0.1;
|
|
|
|
lifeTime = 0.5;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|