ACE3/addons/grenades/functions/fnc_flashbangThrownFuze.sqf
johnb432 99d7e4d57b
Grenades - Add 3 more sounds to flashbang detonations (#9982)
* Add 3 more sounds to flashbang detonations

* Update addons/grenades/functions/fnc_flashbangThrownFuze.sqf

Co-authored-by: PabstMirror <pabstmirror@gmail.com>

---------

Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2024-05-21 20:24:50 -05:00

27 lines
694 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: commy2
* Waits for the flashbang grenade fuze to trigger and 'explode'
*
* Arguments:
* 0: projectile - Flashbang Grenade <OBJECT>
*
* Return Value:
* None
*
* Example:
* [theFlashbang] call ace_grenades_fnc_flashbangThrownFuze
*
* Public: No
*/
params ["_projectile"];
TRACE_1("params",_projectile);
if (alive _projectile) then {
private _soundFile = format ["A3\Sounds_F\arsenal\explosives\grenades\Explosion_HE_grenade_0%1.wss", floor (random 4) + 1];
playSound3D [_soundFile, _projectile, false, getPosASL _projectile, 5, 1.2, 400];
["ace_flashbangExploded", [getPosASL _projectile]] call CBA_fnc_globalEvent;
};