2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-02-14 06:39:01 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
* Waits for the flashbang grenade fuze to trigger and 'explode'
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: projectile - Flashbang Grenade <OBJECT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
2015-08-13 20:36:58 +00:00
|
|
|
* None
|
2015-02-14 06:39:01 +00:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [theFlashbang] call ace_grenades_fnc_flashbangThrownFuze
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-09-26 20:39:12 +00:00
|
|
|
|
2015-08-13 20:36:58 +00:00
|
|
|
params ["_projectile"];
|
2016-02-03 23:53:24 +00:00
|
|
|
TRACE_1("params",_projectile);
|
2015-01-14 09:06:47 +00:00
|
|
|
|
|
|
|
if (alive _projectile) then {
|
2015-02-14 06:39:01 +00:00
|
|
|
playSound3D ["A3\Sounds_F\weapons\Explosion\explosion_mine_1.wss", _projectile, false, getPosASL _projectile, 5, 1.2, 400];
|
2015-08-13 20:36:58 +00:00
|
|
|
|
2016-05-24 23:57:41 +00:00
|
|
|
["ace_flashbangExploded", [getPosASL _projectile]] call CBA_fnc_globalEvent;
|
2015-01-14 20:43:43 +00:00
|
|
|
};
|