mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
26 lines
503 B
Plaintext
26 lines
503 B
Plaintext
/*
|
|
* Author: Garth 'L-H' de Wet
|
|
* Detonates all attached deadman's switched triggered explosives.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* Handled by CBA
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
PARAMS_1(_unit); //Extended_Killed_EventHandlers runs only where _unit is local
|
|
|
|
private ["_deadman"];
|
|
|
|
_deadman = [_unit, "DeadManSwitch"] call FUNC(getPlacedExplosives);
|
|
{
|
|
[_unit, -1, _x, true] call FUNC(detonateExplosive);
|
|
} foreach _deadman;
|