mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
35 lines
982 B
Plaintext
35 lines
982 B
Plaintext
/*
|
|
* Author: commy2
|
|
* handle captive and unconsciousness state and prevent grenades
|
|
*
|
|
* Arguments:
|
|
* 0: _unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* The return value <BOOL>
|
|
*
|
|
* Example:
|
|
* [bob] call ACE_captives_fnc_handleUnitInitPost
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit"];
|
|
|
|
// prevent players from throwing grenades (added to all units)
|
|
[_unit, "Throw", {((_this select 1) getVariable [QGVAR(isHandcuffed), false]) || {(_this select 1) getVariable [QGVAR(isSurrendering), false]}}, {}] call EFUNC(common,addActionEventhandler);
|
|
|
|
if (local _unit) then {
|
|
// reset status on mission start
|
|
if (_unit getVariable [QGVAR(isHandcuffed), false]) then {
|
|
_unit setVariable [QGVAR(isHandcuffed), false];
|
|
[_unit, true] call FUNC(setHandcuffed);
|
|
};
|
|
|
|
if (_unit getVariable [QGVAR(isSurrendering), false]) then {
|
|
_unit setVariable [QGVAR(isSurrendering), false];
|
|
[_unit, true] call FUNC(setSurrendered);
|
|
};
|
|
};
|