mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
29 lines
616 B
Plaintext
29 lines
616 B
Plaintext
/*
|
|
* Author: Garth 'L-H' de Wet
|
|
* Starts a timer for an explosive.
|
|
*
|
|
* Arguments:
|
|
* 0: Explosive <OBJECT>
|
|
* 1: Time till detonate <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [_explosive, 10] call ACE_Explosives_fnc_startTimer;
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_explosive", "_delay"];
|
|
TRACE_2("params",_explosive,_delay);
|
|
|
|
[{
|
|
params ["_explosive"];
|
|
TRACE_1("Explosive Going Boom",_explosive);
|
|
if (!isNull _explosive) then {
|
|
[_explosive, -1, [_explosive, 0]] call FUNC(detonateExplosive);
|
|
};
|
|
}, [_explosive], _delay] call CBA_fnc_waitAndExecute;
|