2015-01-12 09:48:26 +00:00
|
|
|
#include "script_component.hpp"
|
2018-09-17 19:19:29 +00:00
|
|
|
// Author: Garth 'L-H' de Wet
|
|
|
|
// Initialises the explosives system
|
2015-01-12 09:48:26 +00:00
|
|
|
|
2015-01-29 07:38:46 +00:00
|
|
|
ADDON = false;
|
|
|
|
|
2016-11-23 19:35:25 +00:00
|
|
|
PREP_RECOMPILE_START;
|
2016-02-22 14:20:36 +00:00
|
|
|
#include "XEH_PREP.hpp"
|
2016-11-23 19:35:25 +00:00
|
|
|
PREP_RECOMPILE_END;
|
2015-01-29 07:38:46 +00:00
|
|
|
|
2023-12-07 03:20:47 +00:00
|
|
|
#include "initSettings.inc.sqf"
|
2020-10-03 17:00:06 +00:00
|
|
|
|
2017-05-10 16:28:44 +00:00
|
|
|
GVAR(detonationHandlers) = [];
|
2023-03-16 08:52:29 +00:00
|
|
|
GVAR(excludedMines) = [];
|
2017-05-10 16:28:44 +00:00
|
|
|
|
2023-10-04 18:09:05 +00:00
|
|
|
GVAR(defusalKits) = keys (uiNamespace getVariable QGVAR(defusalKits));
|
2023-09-01 20:52:28 +00:00
|
|
|
|
2015-01-29 07:38:46 +00:00
|
|
|
ADDON = true;
|