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:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
|
//******************************************************************************
// Long Range sniper rifles
//******************************************************************************
// For extremely large maps the Short Range (SR) sniper rifles fail short. You
// need modified rifles to reach the far end of the map. The mod already includes
// Long Range (LR) versions of the rifles, which can be enabled here. This gives
// players the ability to switch between the SR and LR rifles using a special key.
// Setting mode 1 or 2 will precache the LR weapons and enable the key binding,
// which is "m" by default. Players can change this key in the in-game menu.
// INFO: mode 2 is recommended if you enable LR sniper rifles!
// 0 = disabled (default)
// 1 = enabled, but do not automatically enable hitloc modifications
// 2 = enabled, and automatically enable hitloc modifications (see next section)
set ex_longrange "1"
// Auto-switch to LR the first time a SR sniper rifle is selected after spawning
// 0 = disabled (default)
// 1 = enabled
//set ex_longrange_autoswitch "0"
// allow players to save their key binding in a file on the server
// If memory is enabled, the binding will be loaded automatically when a player
// reconnects to the server, if the binding was saved for that player previously.
// To disable the in-game menu items, disable both the main feature and memory.
// 0 = disable
// 1 = enable (default)
//set ex_longrange_memory "1"
//******************************************************************************
// Sniper Zoom Levels
//******************************************************************************
// 0 = disable (default)
// 1 = enable, but only set default level (no dynamic zoom levels)
// 2 = enable dynamic zoom levels
set ex_zoom "2"
// Specify the sniper classes for which you allow zoom
// Add up the numbers for all classes you wish to allow. Set 1 if you want to
// allow SR only. Set 2 for LR only. Set 3 for SR and LR. Default = 3 (all)
// 1 = SR sniper rifles (short range)
// 2 = LR sniper rifles (long range)
// -- +
// ... = sniper classes allowed
set ex_zoom_class "3"
// minimum zoom level allowed for each class
// min = 1, max = 10 (default for all classes = 1)
set ex_zoom_min_sr "1"
set ex_zoom_min_lr "1"
// maximum zoom level allowed for each class
// min = ex_zoom_min, max = 10 (default: sr = 7, lr = 9)
set ex_zoom_max_sr "9"
set ex_zoom_max_lr "10"
// default zoom level for each class
// min = ex_zoom_min, max = ex_zoom_max (default: sr = 5, lr = 7)
set ex_zoom_default_sr "5"
set ex_zoom_default_lr "7"
// reset zoom level to default when switching weapons
// 0 = disable (default)
// 1 = enable
//set ex_zoom_switchreset "0"
// reset zoom level to default when toggling ADS
// 0 = disable (default)
// 1 = enable
//set ex_zoom_adsreset "0"
// gradual increase or decrease of zoom level
// 0 = disable
// 1 = enable (default)
//set ex_zoom_gradual "1"
// allow players to save their zoom levels in a file on the server
// If memory is enabled, the levels will be loaded automatically when a player
// reconnects to the server, if the levels were saved for that player previously.
// To disable the in-game menu items, disable both the main feature and memory.
// 0 = disable
// 1 = enable (default)
set ex_zoom_memory "1" |