2021-10-26 12:09:45 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
/*
|
2022-01-30 17:54:30 +00:00
|
|
|
* Author: Dani (TCVM), veteran29
|
2021-10-26 12:09:45 +00:00
|
|
|
* Handles burning reactions of an unit, like screaming or throwing the weapons away due to pain.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Unit <OBJECT>
|
2021-11-09 02:48:54 +00:00
|
|
|
* 1: Should unit throw its current weapon <BOOL>
|
2021-10-26 12:09:45 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2021-11-09 02:48:54 +00:00
|
|
|
params ["_unit", ["_throwWeapon", true]];
|
2021-10-26 12:09:45 +00:00
|
|
|
|
|
|
|
if (
|
2021-11-09 02:48:54 +00:00
|
|
|
_throwWeapon
|
|
|
|
&& {GVAR(dropWeapon) > 0}
|
2021-12-18 23:15:32 +00:00
|
|
|
&& {_unit in _unit && {(currentWeapon _unit) isNotEqualTo ""}}
|
2021-10-26 12:09:45 +00:00
|
|
|
&& {!isPlayer _unit || GVAR(dropWeapon >= 2)}
|
|
|
|
) then {
|
|
|
|
[_unit] call EFUNC(hitreactions,throwWeapon);
|
|
|
|
};
|
|
|
|
|
2021-11-09 02:48:54 +00:00
|
|
|
if (_unit isKindOf "CAManBase") then {
|
|
|
|
private _soundID = floor (1 + random 15);
|
|
|
|
private _sound = format [QGVAR(scream_%1), _soundID];
|
|
|
|
[QGVAR(playScream), [_sound, _unit]] call CBA_fnc_globalEvent;
|
|
|
|
};
|