2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-01-12 09:48:26 +00:00
|
|
|
/*
|
2015-02-02 08:35:17 +00:00
|
|
|
* Author: Garth 'L-H' de Wet
|
|
|
|
* Initialises the explosives module
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* Module things.
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* Called By BIS.
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-04-29 05:05:02 +00:00
|
|
|
|
2015-08-15 19:35:33 +00:00
|
|
|
params ["_logic"];
|
2015-01-12 09:48:26 +00:00
|
|
|
|
2015-08-15 19:35:33 +00:00
|
|
|
[_logic, QGVAR(RequireSpecialist), "RequireSpecialist"] call EFUNC(Common,readSettingFromModule);
|
|
|
|
[_logic, QGVAR(PunishNonSpecialists),"PunishNonSpecialists"] call EFUNC(Common,readSettingFromModule);
|
|
|
|
[_logic, QGVAR(ExplodeOnDefuse),"ExplodeOnDefuse"] call EFUNC(Common,readSettingFromModule);
|
2015-01-12 09:48:26 +00:00
|
|
|
|
2016-10-02 10:55:31 +00:00
|
|
|
INFO("Explosive Module Initialized.");
|