ACE3/addons/grenades/functions/fnc_flashbangThrownFuze.sqf
johnb432 67fe22a5a6
Grenades - Make flashbang detonation sound configurable via config (#9985)
* Added configurable flashbang detonation sound

Updated documentation by filling missing information in

* Update grenades-framework.md

* Update grenades-framework.md
2024-05-22 13:38:59 -07:00

34 lines
949 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 _sounds = getArray (_projectile call CBA_fnc_getObjectConfig >> QGVAR(flashbangExplodeSound));
(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"];
playSound3D [_file, _projectile, false, getPosASL _projectile, _volume, _pitch, _distance];
["ace_flashbangExploded", [getPosASL _projectile]] call CBA_fnc_globalEvent;
};