From f0eb7dd4794b42ccfd850e0d71c2033576ce19ce Mon Sep 17 00:00:00 2001 From: JoramD Date: Sun, 24 Dec 2017 11:30:02 +0100 Subject: [PATCH 1/4] Tweaked effect size of AN-M14 --- addons/grenades/functions/fnc_incendiary.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/grenades/functions/fnc_incendiary.sqf b/addons/grenades/functions/fnc_incendiary.sqf index 216ab349a3..37873331f9 100644 --- a/addons/grenades/functions/fnc_incendiary.sqf +++ b/addons/grenades/functions/fnc_incendiary.sqf @@ -30,7 +30,7 @@ #define PARTICLE_SMOKE_LIFTING 1 #define PARTICLE_SMOKE_WIND_EFFECT 1 -#define EFFECT_SIZE 1 +#define EFFECT_SIZE 1.8 #define ORIENTATION 5.4 #define EXPANSION 1 From fcba14ef713a1b48b6340504b4c645e87cf34e54 Mon Sep 17 00:00:00 2001 From: JoramD Date: Sun, 24 Dec 2017 12:06:18 +0100 Subject: [PATCH 2/4] Tweaked affected area for objects --- addons/grenades/functions/fnc_incendiary.sqf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/addons/grenades/functions/fnc_incendiary.sqf b/addons/grenades/functions/fnc_incendiary.sqf index 37873331f9..a968544b3f 100644 --- a/addons/grenades/functions/fnc_incendiary.sqf +++ b/addons/grenades/functions/fnc_incendiary.sqf @@ -30,10 +30,12 @@ #define PARTICLE_SMOKE_LIFTING 1 #define PARTICLE_SMOKE_WIND_EFFECT 1 -#define EFFECT_SIZE 1.8 +#define EFFECT_SIZE 1 #define ORIENTATION 5.4 #define EXPANSION 1 +#define EFFECT_AREA 1.8 + params ["_projectile", "_timeToLive", "_center"]; if (isNull _projectile) exitWith {TRACE_1("null",_projectile);}; @@ -187,7 +189,7 @@ if (isServer) then { // --- inflame fireplace, barrels etc. _x inflame true; }; -} forEach (_position nearObjects EFFECT_SIZE); +} forEach (_position nearObjects EFFECT_AREA); // --- damage local vehicle private _vehicle = _position nearestObject "Car"; From ed97be0e061b54ea18a01cb3f776e8f19f0d49ca Mon Sep 17 00:00:00 2001 From: commy2 Date: Sun, 31 Dec 2017 13:33:42 +0100 Subject: [PATCH 3/4] radius vs area --- addons/grenades/functions/fnc_incendiary.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/grenades/functions/fnc_incendiary.sqf b/addons/grenades/functions/fnc_incendiary.sqf index a968544b3f..4bbb4521c0 100644 --- a/addons/grenades/functions/fnc_incendiary.sqf +++ b/addons/grenades/functions/fnc_incendiary.sqf @@ -34,7 +34,7 @@ #define ORIENTATION 5.4 #define EXPANSION 1 -#define EFFECT_AREA 1.8 +#define EFFECT_RADIUS 1.8 params ["_projectile", "_timeToLive", "_center"]; @@ -189,7 +189,7 @@ if (isServer) then { // --- inflame fireplace, barrels etc. _x inflame true; }; -} forEach (_position nearObjects EFFECT_AREA); +} forEach (_position nearObjects EFFECT_RADIUS); // --- damage local vehicle private _vehicle = _position nearestObject "Car"; From 66fc592dbe82e303c63ff9f371c87649df13fc41 Mon Sep 17 00:00:00 2001 From: commy2 Date: Sun, 31 Dec 2017 13:36:55 +0100 Subject: [PATCH 4/4] destruction vs effect --- addons/grenades/functions/fnc_incendiary.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/grenades/functions/fnc_incendiary.sqf b/addons/grenades/functions/fnc_incendiary.sqf index 4bbb4521c0..5b0384da3b 100644 --- a/addons/grenades/functions/fnc_incendiary.sqf +++ b/addons/grenades/functions/fnc_incendiary.sqf @@ -34,7 +34,7 @@ #define ORIENTATION 5.4 #define EXPANSION 1 -#define EFFECT_RADIUS 1.8 +#define DESTRUCTION_RADIUS 1.8 params ["_projectile", "_timeToLive", "_center"]; @@ -189,7 +189,7 @@ if (isServer) then { // --- inflame fireplace, barrels etc. _x inflame true; }; -} forEach (_position nearObjects EFFECT_RADIUS); +} forEach (_position nearObjects DESTRUCTION_RADIUS); // --- damage local vehicle private _vehicle = _position nearestObject "Car";