-
Notifications
You must be signed in to change notification settings - Fork 1
/
cvarinfo.txt
35 lines (25 loc) · 1.14 KB
/
cvarinfo.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Global toggle ///////////////////////////////////////////////////////////////
server bool m8f_aas_enabled = true;
// Event tuning ////////////////////////////////////////////////////////////////
server int m8f_aas_min_boss_health = 2000;
server int m8f_aas_health_limit = 25;
server int m8f_aas_min_save_wait = 10; // seconds
server int m8f_aas_autosave_period = 120; // seconds
server int m8f_aas_group_number = 10;
server int aas_boss_group_number = 1;
server int m8f_aas_health_threshold_down = 50;
server int m8f_aas_health_threshold_up = 100;
server int m8f_aas_armor_threshold_down = 25;
server int m8f_aas_armor_threshold_up = 100;
server bool m8f_aas_save_on_dropped = false;
server int aas_big_heal = 50;
// Logs and voice //////////////////////////////////////////////////////////////
// -1 - nothing;
// 99 - quiet: enemies, time, teleport, items;
// 199 - verbose: enemies, time, teleport, items, health, armor;
// 999 - everything.
user int m8f_aas_console_log_level = 99;
user int m8f_aas_screen_level = -1;
user string aas_voice_type = "";
user int aas_voice_volume = 1;
user int aas_print_color = 0;