mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
fee65cd56f
*Added configs for the new marksmen scopes *Introduced minor and major steps *Introcuded a new increment config (ACE_ScopeAdjust_Increment) *Changed the default zero range to 100m *Added a zero reference setting *Added an interaction menu entry to update the zero reference setting
20 lines
429 B
C++
20 lines
429 B
C++
#define COMPONENT scopes
|
|
#include "\z\ace\addons\main\script_mod.hpp"
|
|
|
|
#define ELEVATION_UP 0
|
|
#define ELEVATION_DOWN 1
|
|
#define WINDAGE_LEFT 2
|
|
#define WINDAGE_RIGHT 3
|
|
|
|
#define MINOR_INCREMENT false
|
|
#define MAJOR_INCREMENT true
|
|
|
|
#ifdef DEBUG_ENABLED_SCOPES
|
|
#define DEBUG_MODE_FULL
|
|
#endif
|
|
|
|
#ifdef DEBUG_SETTINGS_SCOPES
|
|
#define DEBUG_SETTINGS DEBUG_SETTINGS_SCOPES
|
|
#endif
|
|
|
|
#include "\z\ace\addons\main\script_macros.hpp" |