2015-09-26 20:39:12 +00:00
|
|
|
|
2015-01-14 09:06:47 +00:00
|
|
|
class CfgAmmo {
|
2016-06-08 00:22:48 +00:00
|
|
|
class Default;
|
|
|
|
class Grenade: Default {
|
2016-06-16 01:16:28 +00:00
|
|
|
GVAR(pullPinSound)[] = {"A3\sounds_f\weapons\grenades\Grenade_PullPin.wss", 1.5, 1, 10};
|
|
|
|
impactGroundSoft[] = {};
|
2016-06-08 00:22:48 +00:00
|
|
|
};
|
|
|
|
|
2015-02-14 06:39:01 +00:00
|
|
|
class FlareCore;
|
|
|
|
class FlareBase: FlareCore {
|
|
|
|
intensity = 20000;
|
|
|
|
flareSize = 12;
|
2015-06-02 12:02:46 +00:00
|
|
|
timeToLive = 60;
|
2015-02-14 06:39:01 +00:00
|
|
|
};
|
2015-09-01 10:46:15 +00:00
|
|
|
|
2015-02-14 06:39:01 +00:00
|
|
|
class F_40mm_White: FlareBase {
|
|
|
|
intensity = 40000;
|
|
|
|
flareSize = 12;
|
|
|
|
};
|
2015-09-01 10:46:15 +00:00
|
|
|
|
2015-02-14 06:39:01 +00:00
|
|
|
class F_20mm_White: FlareBase {
|
|
|
|
intensity = 20000;
|
2015-06-02 12:02:46 +00:00
|
|
|
flareSize = 6;
|
2015-02-14 06:39:01 +00:00
|
|
|
};
|
2015-09-01 10:46:15 +00:00
|
|
|
|
2015-02-14 06:39:01 +00:00
|
|
|
class F_Signal_Green: FlareBase {
|
|
|
|
intensity = 20000;
|
|
|
|
flareSize = 12;
|
|
|
|
};
|
2015-09-01 10:46:15 +00:00
|
|
|
|
2015-02-14 06:39:01 +00:00
|
|
|
class Flare_82mm_AMOS_White: FlareCore {
|
|
|
|
intensity = 80000;
|
|
|
|
flareSize = 12;
|
2015-06-02 12:02:46 +00:00
|
|
|
timeToLive = 60;
|
2015-02-14 06:39:01 +00:00
|
|
|
};
|
2015-01-14 09:06:47 +00:00
|
|
|
|
2015-02-14 06:39:01 +00:00
|
|
|
class ACE_F_Hand_White: F_20mm_White {
|
|
|
|
timeToLive = 60;
|
|
|
|
};
|
2015-09-01 10:46:15 +00:00
|
|
|
|
|
|
|
class F_20mm_Red;
|
2015-02-14 06:39:01 +00:00
|
|
|
class ACE_F_Hand_Red: F_20mm_Red {
|
|
|
|
timeToLive = 60;
|
|
|
|
};
|
2015-09-01 10:46:15 +00:00
|
|
|
|
|
|
|
class F_20mm_Green;
|
2015-02-14 06:39:01 +00:00
|
|
|
class ACE_F_Hand_Green: F_20mm_Green {
|
|
|
|
timeToLive = 60;
|
|
|
|
};
|
2015-09-01 10:46:15 +00:00
|
|
|
|
|
|
|
class F_20mm_Yellow;
|
2015-02-14 06:39:01 +00:00
|
|
|
class ACE_F_Hand_Yellow: F_20mm_Yellow {
|
|
|
|
timeToLive = 60;
|
|
|
|
};
|
2015-01-14 09:06:47 +00:00
|
|
|
|
2015-09-01 10:46:15 +00:00
|
|
|
class SmokeShell;
|
2015-09-01 21:19:49 +00:00
|
|
|
class ACE_G_Handflare_White: SmokeShell {
|
|
|
|
GVAR(flare) = 1;
|
|
|
|
GVAR(color)[] = {0.5,0.5,0.5,0.5};
|
2016-06-16 01:16:28 +00:00
|
|
|
GVAR(pullPinSound)[] = {"A3\sounds_f\weapons\smokeshell\smoke_1.wss", 0.4, 1, 10};
|
2015-09-01 21:19:49 +00:00
|
|
|
model = "\A3\weapons_f\ammo\flare_white";
|
|
|
|
dangerRadiusHit = -1;
|
|
|
|
suppressionRadiusHit = -1;
|
|
|
|
typicalSpeed = 22;
|
|
|
|
cost = 100;
|
|
|
|
deflecting = 30;
|
|
|
|
explosionTime = 3;
|
|
|
|
timeToLive = 60;
|
|
|
|
grenadeFireSound[] = {};
|
|
|
|
grenadeBurningSound[] = {};
|
2016-07-13 22:01:14 +00:00
|
|
|
aiAmmoUsageFlags = "1 + 2"; // illumination + marking
|
2015-09-01 21:19:49 +00:00
|
|
|
smokeColor[] = {0,0,0,0};
|
|
|
|
effectsSmoke = "ACE_HandFlareEffect";
|
|
|
|
whistleDist = 0;
|
|
|
|
};
|
|
|
|
class ACE_G_Handflare_Red: ACE_G_Handflare_White {
|
|
|
|
GVAR(color)[] = {0.5,0.25,0.25,0.5};
|
|
|
|
model = "\A3\weapons_f\ammo\flare_red";
|
|
|
|
};
|
|
|
|
class ACE_G_Handflare_Green: ACE_G_Handflare_White {
|
|
|
|
GVAR(color)[] = {0.25,0.5,0.25,0.5};
|
|
|
|
model = "\A3\weapons_f\ammo\flare_green";
|
|
|
|
};
|
|
|
|
class ACE_G_Handflare_Yellow: ACE_G_Handflare_White {
|
|
|
|
GVAR(color)[] = {0.5,0.5,0.25,0.5};
|
|
|
|
model = "\A3\weapons_f\ammo\flare_yellow";
|
|
|
|
};
|
|
|
|
|
2015-09-01 10:46:15 +00:00
|
|
|
class ACE_G_M84: SmokeShell {
|
2015-09-01 21:19:49 +00:00
|
|
|
GVAR(flashbang) = 1;
|
2016-04-08 18:34:50 +00:00
|
|
|
model = QPATHTOF(models\ACE_m84_thrown.p3d);
|
2015-09-01 10:46:15 +00:00
|
|
|
dangerRadiusHit = -1;
|
|
|
|
suppressionRadiusHit = 20;
|
|
|
|
typicalSpeed = 22;
|
|
|
|
cost = 40;
|
2015-09-03 11:23:15 +00:00
|
|
|
explosive = 1E-7;
|
2015-09-01 10:46:15 +00:00
|
|
|
deflecting = 15;
|
2015-09-01 21:19:49 +00:00
|
|
|
explosionTime = 2.3;
|
2015-04-27 21:07:31 +00:00
|
|
|
timeToLive = 6;
|
2015-09-01 10:46:15 +00:00
|
|
|
grenadeFireSound[] = {};
|
|
|
|
grenadeBurningSound[] = {};
|
2016-07-13 22:01:14 +00:00
|
|
|
aiAmmoUsageFlags = "64"; // infantry
|
2015-09-01 10:46:15 +00:00
|
|
|
smokeColor[] = {0,0,0,0};
|
|
|
|
effectsSmoke = "ACE_M84FlashbangEffect";
|
|
|
|
whistleDist = 0;
|
2015-02-14 06:39:01 +00:00
|
|
|
};
|
2016-07-13 22:01:14 +00:00
|
|
|
|
2016-06-14 01:07:46 +00:00
|
|
|
class Chemlight_base: SmokeShell {
|
2016-06-16 01:16:28 +00:00
|
|
|
GVAR(pullPinSound)[] = {"A3\sounds_f\weapons\Other\dry4.wss", 3, 2, 10};
|
2016-06-14 01:07:46 +00:00
|
|
|
soundImpactHard1[] = {"A3\sounds_f\characters\footsteps\concrete_run_1",1,1.8,65};
|
|
|
|
soundImpactHard2[] = {"A3\sounds_f\characters\footsteps\concrete_run_1",1,1.9,65};
|
|
|
|
soundImpactHard3[] = {"A3\sounds_f\characters\footsteps\concrete_run_1",1,1.6,65};
|
|
|
|
soundImpactHard4[] = {"A3\sounds_f\characters\footsteps\concrete_run_1",1,2,65};
|
|
|
|
soundImpactHard5[] = {"A3\sounds_f\characters\footsteps\concrete_run_1",1,1.5,65};
|
|
|
|
soundImpactHard6[] = {"A3\sounds_f\characters\footsteps\concrete_run_1",1,1.7,65};
|
|
|
|
soundImpactHard7[] = {"A3\sounds_f\characters\footsteps\concrete_run_1",1,2.1,65};
|
|
|
|
soundImpactIron1[] = {"A3\sounds_f\characters\footsteps\concrete_run_1",1,2.1,95};
|
|
|
|
soundImpactIron2[] = {"A3\sounds_f\characters\footsteps\steel_run_4",1,1.75,95};
|
|
|
|
soundImpactIron3[] = {"A3\sounds_f\characters\footsteps\steel_run_4",1,1.6,95};
|
|
|
|
soundImpactIron4[] = {"A3\sounds_f\characters\footsteps\steel_run_2",1,2,95};
|
|
|
|
soundImpactIron5[] = {"A3\sounds_f\characters\footsteps\steel_run_2",1,2.1,95};
|
|
|
|
soundImpactWoodExt1[] = {"A3\sounds_f\characters\footsteps\wood_run_ext_1",1,1.1,75};
|
|
|
|
soundImpactWoodExt2[] = {"A3\sounds_f\characters\footsteps\wood_run_ext_1",1,1.15,75};
|
|
|
|
soundImpactWoodExt3[] = {"A3\sounds_f\characters\footsteps\wood_run_ext_2",1,1.1,75};
|
|
|
|
soundImpactWoodExt4[] = {"A3\sounds_f\characters\footsteps\wood_run_ext_2",1,1.15,75};
|
|
|
|
};
|
2016-07-13 22:01:14 +00:00
|
|
|
|
|
|
|
class ACE_G_M14: SmokeShell {
|
|
|
|
GVAR(incendiary) = 1;
|
|
|
|
model = QPATHTOF(models\ace_anm14th3_armed.p3d);
|
|
|
|
hit = 5;
|
|
|
|
indirectHit = 4;
|
|
|
|
indirectHitRange = 1.1;
|
|
|
|
dangerRadiusHit = 50;
|
|
|
|
suppressionRadiusHit = 18;
|
|
|
|
deflecting = 20;
|
|
|
|
explosionTime = 3;
|
|
|
|
timeToLive = 40;
|
|
|
|
fuseDistance = 0;
|
|
|
|
SmokeShellSoundHit1[] = {QPATHTOF(sounds\incen_exp1.ogg),3.1622777,1,500};
|
|
|
|
SmokeShellSoundHit2[] = {QPATHTOF(sounds\incen_exp2.ogg),3.1622777,1,500};
|
|
|
|
grenadeFireSound[] = {"SmokeShellSoundHit1",0.5,"SmokeShellSoundHit2",0.5};
|
|
|
|
grenadeBurningSound[] = {};
|
|
|
|
aiAmmoUsageFlags = "64 + 1"; // infantry + illumination
|
|
|
|
effectsSmoke = "ACE_Incendiary";
|
|
|
|
whistleDist = 0; // no BIS explosion effects
|
|
|
|
whistleOnFire = 0; // no BIS firing effects
|
|
|
|
};
|
2015-01-14 09:06:47 +00:00
|
|
|
};
|