mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
29 lines
696 B
Plaintext
29 lines
696 B
Plaintext
/*
|
|
* Author: Garth 'L-H' de Wet
|
|
* Whether a unit can perform the defuse action
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Able to defuse <BOOL>
|
|
*
|
|
* Example:
|
|
* if ([player] call ACE_Explosives_fnc_canDefuse) then {hint "Can Defuse";};
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
private ["_isSpecialist"];
|
|
EXPLODE_2_PVT(_this,_unit,_target);
|
|
if (isNull(_target getVariable [QGVAR(Explosive),objNull])) exitWith {
|
|
deleteVehicle _target;
|
|
false
|
|
};
|
|
if (vehicle _unit != _unit || {!("ACE_DefusalKit" in (items _unit))}) exitWith {false};
|
|
_isSpecialist = [_unit] call EFUNC(Common,isEOD);
|
|
|
|
if (GVAR(RequireSpecialist) && {!_isSpecialist}) exitWith {false};
|
|
|
|
true
|