mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
b2f4b8ea20
* Cleanup medical settings * Fix extra [ * Allow giving IV/blood to self by default * Medical Blood - Settings improvements and cleanup (#7069) * Add more blood settings and cleanup * Fix include before header * Update addons/medical_blood/functions/fnc_init.sqf Co-Authored-By: PabstMirror <pabstmirror@gmail.com> * Disable debug * Cleanup moved settings * Fix remaining setting descriptions
23 lines
594 B
C++
23 lines
594 B
C++
#define COMPONENT medical_blood
|
|
#define COMPONENT_BEAUTIFIED Medical Blood
|
|
#include "\z\ace\addons\main\script_mod.hpp"
|
|
|
|
// #define DEBUG_MODE_FULL
|
|
// #define DISABLE_COMPILE_CACHE
|
|
// #define ENABLE_PERFORMANCE_COUNTERS
|
|
|
|
#ifdef DEBUG_ENABLED_MEDICAL_BLOOD
|
|
#define DEBUG_MODE_FULL
|
|
#endif
|
|
|
|
#ifdef DEBUG_SETTINGS_MEDICAL_BLOOD
|
|
#define DEBUG_SETTINGS DEBUG_SETTINGS_MEDICAL_BLOOD
|
|
#endif
|
|
|
|
#include "\z\ace\addons\medical_engine\script_macros_medical.hpp"
|
|
#include "\z\ace\addons\main\script_macros.hpp"
|
|
|
|
#define BLOOD_DISABLED 0
|
|
#define BLOOD_ONLY_PLAYERS 1
|
|
#define BLOOD_ENABLED 2
|