2015-01-11 16:42:31 +00:00
|
|
|
/*
|
2015-02-02 08:35:17 +00:00
|
|
|
* Author: Garth 'L-H' de Wet
|
|
|
|
* Causes the unit to defuse the passed explosive.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Unit <OBJECT>
|
|
|
|
* 1: Explosive <OBJECT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [player, ACE_Interaction_Target] call ACE_Explosives_fnc_defuseExplosive;
|
|
|
|
*
|
|
|
|
* Public: Yes
|
|
|
|
*/
|
2015-01-13 21:21:31 +00:00
|
|
|
#include "script_component.hpp"
|
2015-04-01 18:43:18 +00:00
|
|
|
EXPLODE_2_PVT(_this,_unit,_explosive);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-12 09:48:26 +00:00
|
|
|
if (getNumber (ConfigFile >> "CfgAmmo" >> typeof _explosive >> "ACE_explodeOnDefuse") == 1) exitWith {
|
2015-04-06 20:20:11 +00:00
|
|
|
[_unit, -1, [_explosive, 1], true] call FUNC(detonateExplosive);
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2015-04-01 18:43:18 +00:00
|
|
|
{
|
2015-04-06 20:20:11 +00:00
|
|
|
detach _x;
|
|
|
|
deleteVehicle _x;
|
|
|
|
false
|
2015-04-01 18:43:18 +00:00
|
|
|
} count (attachedObjects (_explosive));
|
2015-03-31 21:20:32 +00:00
|
|
|
|
2015-01-11 16:42:31 +00:00
|
|
|
_unit action ["Deactivate", _unit, _explosive];
|