2023-09-12 18:58:10 +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:
|
2024-06-18 08:05:01 +00:00
|
|
|
* 0: Flashbang grenade <OBJECT>
|
2015-02-14 06:39:01 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
2024-06-18 08:05:01 +00:00
|
|
|
if (!alive _projectile) exitWith {};
|
2024-05-22 20:38:59 +00:00
|
|
|
|
2024-06-18 08:05:01 +00:00
|
|
|
private _posASL = getPosASL _projectile;
|
|
|
|
private _sounds = getArray (_projectile call CBA_fnc_getObjectConfig >> QGVAR(flashbangExplodeSound));
|
2024-05-22 20:38:59 +00:00
|
|
|
|
2024-06-18 08:05:01 +00:00
|
|
|
(if (_sounds isEqualTo []) then {
|
|
|
|
[format ["A3\Sounds_F\arsenal\explosives\grenades\Explosion_HE_grenade_0%1.wss", floor (random 4) + 1], 5, 1.2, 400]
|
|
|
|
} else {
|
|
|
|
selectRandom _sounds
|
|
|
|
}) params ["_file", "_volume", "_pitch", "_distance"];
|
2015-08-13 20:36:58 +00:00
|
|
|
|
2024-06-18 08:05:01 +00:00
|
|
|
playSound3D [_file, _projectile, false, _posASL, _volume, _pitch, _distance];
|
|
|
|
|
|
|
|
["ace_flashbangExploded", [_posASL]] call CBA_fnc_globalEvent;
|