2015-01-12 09:48:26 +00:00
|
|
|
#define COMPONENT explosives
|
2016-06-20 09:41:17 +00:00
|
|
|
#define COMPONENT_BEAUTIFIED Explosives
|
2015-01-12 09:48:26 +00:00
|
|
|
#include "\z\ace\addons\main\script_mod.hpp"
|
|
|
|
|
2015-04-29 04:57:11 +00:00
|
|
|
// #define DEBUG_MODE_FULL
|
2016-01-29 05:26:02 +00:00
|
|
|
// #define DISABLE_COMPILE_CACHE
|
|
|
|
// #define ENABLE_PERFORMANCE_COUNTERS
|
2015-04-29 04:57:11 +00:00
|
|
|
|
2015-01-12 09:48:26 +00:00
|
|
|
#ifdef DEBUG_ENABLED_EXPLOSIVES
|
2015-04-06 16:22:43 +00:00
|
|
|
#define DEBUG_MODE_FULL
|
2015-01-12 09:48:26 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DEBUG_SETTINGS_EXPLOSIVES
|
2015-04-06 16:22:43 +00:00
|
|
|
#define DEBUG_SETTINGS DEBUG_SETTINGS_EXPLOSIVES
|
2015-01-12 09:48:26 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "\z\ace\addons\main\script_macros.hpp"
|
2015-07-14 05:24:55 +00:00
|
|
|
|
2018-06-22 19:41:43 +00:00
|
|
|
#include "\a3\ui_f\hpp\defineCommonGrids.inc"
|
|
|
|
#include "\a3\ui_f\hpp\defineCommonColors.inc"
|
|
|
|
|
|
|
|
#define IDC_TIMER_DIGIT_1 8501
|
|
|
|
#define IDC_TIMER_DIGIT_2 8502
|
|
|
|
#define IDC_TIMER_DIGIT_3 8503
|
|
|
|
#define IDC_TIMER_DIGIT_4 8504
|
|
|
|
#define IDC_TIMER_SLIDER 8505
|
|
|
|
#define IDC_TIMER_CONFIRM 8506
|
|
|
|
#define TIMER_DIGIT_IDCs [IDC_TIMER_DIGIT_1, IDC_TIMER_DIGIT_2, IDC_TIMER_DIGIT_3, IDC_TIMER_DIGIT_4]
|
|
|
|
|
|
|
|
#define TIMER_VALUE_MIN 5
|
|
|
|
#define TIMER_VALUE_MAX 900
|
|
|
|
#define TIMER_VALUE_DEFAULT 30
|
|
|
|
|
2015-07-14 05:24:55 +00:00
|
|
|
#define PLACE_WAITING -1
|
|
|
|
#define PLACE_CANCEL 0
|
2015-08-16 06:51:44 +00:00
|
|
|
#define PLACE_APPROVE 1
|