2015-01-11 16:42:31 +00:00
|
|
|
// based on KK_fnc_playerWeaponMulfunction from KillzoneKid
|
2015-01-13 03:23:14 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
private ["_unit", "_weapon", "_jammedWeapons"];
|
|
|
|
|
|
|
|
_unit = _this select 0;
|
|
|
|
_weapon = _this select 1;
|
|
|
|
|
|
|
|
// don't jam a weapon with no rounds left
|
|
|
|
if (_unit ammo _weapon == 0) exitWith {};
|
|
|
|
|
2015-01-13 03:23:14 +00:00
|
|
|
_jammedWeapons = _unit getVariable [QGVAR(jammedWeapons), []];
|
2015-01-11 16:42:31 +00:00
|
|
|
_jammedWeapons pushBack _weapon;
|
|
|
|
|
2015-01-13 03:23:14 +00:00
|
|
|
_unit setVariable [QGVAR(jammedWeapons), _jammedWeapons];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
// this is to re-activate the 'DefaultAction', so you can jam a weapon while full auto shooting
|
|
|
|
[_unit, _weapon] spawn {
|
|
|
|
_unit = _this select 0;
|
|
|
|
_weapon = _this select 1;
|
|
|
|
|
|
|
|
_ammo = _unit ammo _weapon;
|
|
|
|
|
|
|
|
_frame = diag_frameno;
|
|
|
|
|
|
|
|
if (_ammo > 0) then {
|
|
|
|
_unit setAmmo [_weapon, 0];
|
|
|
|
|
|
|
|
waitUntil {_frame < diag_frameno};
|
|
|
|
|
|
|
|
_unit setAmmo [_weapon, _ammo];
|
2015-01-13 03:30:39 +00:00
|
|
|
//[localize "STR_ACE_Overheating_WeaponJammed"] call EFUNC(common,displayTextStructured);
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
// only display the hint once, after you try to shoot an already jammed weapon
|
2015-01-13 03:23:14 +00:00
|
|
|
GVAR(knowAboutJam) = false;
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-13 03:23:14 +00:00
|
|
|
if (_unit getVariable [QGVAR(JammingActionID), -1] == -1) then {
|
2015-01-11 16:42:31 +00:00
|
|
|
private ["_condition", "_statement", "_condition2", "_statement2", "_id"];
|
|
|
|
|
|
|
|
_condition = {
|
2015-01-13 03:30:39 +00:00
|
|
|
[_this select 1] call EFUNC(common,canUseWeapon)
|
2015-01-13 03:23:14 +00:00
|
|
|
&& {currentMuzzle (_this select 1) in ((_this select 1) getVariable [QGVAR(jammedWeapons), []])}
|
|
|
|
&& {!(currentMuzzle (_this select 1) in ((_this select 1) getVariable [QEGVAR(safemode,safedWeapons), []]))}
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
_statement = {
|
|
|
|
playSound3D ["a3\sounds_f\weapons\Other\dry9.wss", _this select 0];
|
|
|
|
|
2015-01-13 03:23:14 +00:00
|
|
|
if (!(missionNamespace getVariable [QGVAR(knowAboutJam), false]) && {(_this select 1) ammo currentWeapon (_this select 1) > 0}) then {
|
2015-01-13 03:30:39 +00:00
|
|
|
[localize "STR_ACE_Overheating_WeaponJammed"] call EFUNC(common,displayTextStructured);
|
2015-01-13 03:23:14 +00:00
|
|
|
GVAR(knowAboutJam) = true;
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
_condition2 = {
|
2015-01-13 03:23:14 +00:00
|
|
|
currentWeapon (_this select 1) in ((_this select 1) getVariable [QGVAR(jammedWeapons), []])
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
_statement2 = {
|
2015-01-13 03:23:14 +00:00
|
|
|
[_this select 1, currentWeapon (_this select 1), false] call FUNC(clearJam);
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2015-01-13 03:30:39 +00:00
|
|
|
//_id = [_unit, format ["<t color=""#FFFF00"" >%1</t>", localize "STR_ACE_Overheating_UnjamWeapon"], "DefaultAction", _condition, _statement, _condition2, _statement2, 10] call EFUNC(common,addActionMenuEventHandler);
|
|
|
|
_id = [_unit, "DefaultAction", _condition, _statement] call EFUNC(common,addActionEventHandler);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-13 03:23:14 +00:00
|
|
|
_unit setVariable [QGVAR(JammingActionID), _id];
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|