mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
f3c66e83b4
* Refuel: Allow changing progress bars' duration * Clarify Turkish progressDuration_DisplayName * Update addons/refuel/functions/fnc_moduleRefuelSettings.sqf * Change progressDuration setting's type to TIME * Update progressDuration setting display name, add description too Co-authored-by: PabstMirror <pabstmirror@gmail.com>
24 lines
637 B
C++
24 lines
637 B
C++
#define COMPONENT refuel
|
|
#define COMPONENT_BEAUTIFIED Refuel
|
|
#include "\z\ace\addons\main\script_mod.hpp"
|
|
|
|
// #define DRAW_HOOKS_POS
|
|
// #define DEBUG_MODE_FULL
|
|
// #define DISABLE_COMPILE_CACHE
|
|
// #define ENABLE_PERFORMANCE_COUNTERS
|
|
|
|
#ifdef DEBUG_ENABLED_REFUEL
|
|
#define DEBUG_MODE_FULL
|
|
#endif
|
|
|
|
#ifdef DEBUG_ENABLED_REFUEL
|
|
#define DEBUG_SETTINGS DEBUG_ENABLED_REFUEL
|
|
#endif
|
|
|
|
#include "\z\ace\addons\main\script_macros.hpp"
|
|
|
|
#include "\z\ace\addons\refuel\defines.hpp"
|
|
|
|
#define INTERACT_EXCEPTIONS_REFUELING "isNotInside", "isNotOnLadder", "isNotSwimming"
|
|
#define INTERACT_EXCEPTIONS INTERACT_EXCEPTIONS_REFUELING, "isNotRefueling"
|