ACE3/addons/weaponselect/functions/fnc_throwGrenade.sqf

30 lines
1.0 KiB
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
* Author: commy2
2016-02-06 21:27:43 +00:00
* Display Grenade information on grenade throw. Called from the unified fired EH only for the local player.
*
* Arguments:
2016-02-06 21:27:43 +00:00
* None. Parameters inherited from EFUNC(common,firedEH)
*
* Return Value:
* None
*
* Example:
* [_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile] call ace_weaponselect_fnc_throwGrenade
*
* Public: No
*/
2015-01-17 17:26:51 +00:00
2016-02-06 21:27:43 +00:00
//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
2015-01-17 17:26:51 +00:00
if (_weapon != "Throw") exitWith {};
private _count = ({_x == _magazine} count uniformItems _unit) + ({_x == _magazine} count vestItems _unit) + ({_x == _magazine} count backpackItems _unit);
2015-01-17 17:26:51 +00:00
[_magazine, _count] call FUNC(displayGrenadeTypeAndNumber);
if (_count == 0) then {
if (GVAR(CurrentGrenadeMuzzleIsFrag)) then {GVAR(CurrentGrenadeMuzzleFrag) = ""} else {GVAR(CurrentGrenadeMuzzleOther) = ""};
};