-
Notifications
You must be signed in to change notification settings - Fork 0
/
menudef.txt
98 lines (76 loc) · 2.97 KB
/
menudef.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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// Entry point /////////////////////////////////////////////////////////////////
AddOptionMenu OptionsMenu
{
Submenu "m_Gizmos", mg_Options
}
// Menus ///////////////////////////////////////////////////////////////////////
OptionMenu mg_Options
{
Title "m_Gizmos Options"
Submenu "Controls", mg_Controls
Submenu "Gameplay", mg_Gameplay
Submenu "Sound" , mg_Sound
}
OptionMenu mg_Controls
{
Title "m_Gizmos Controls"
StaticTextSwitchable "$CNTRLMNU_SWITCHTEXT1", "$CNTRLMNU_SWITCHTEXT2", "ControlMessage"
StaticText ""
Control "Throw Junk", m8f_wm_throw_junk
StaticText "0 damage hitscan attack. Also alerts enemies.", Black
StaticText ""
Control "Holster weapon" , m8f_wm_holster
Control "Select the best weapon" , wm_switch_to_powerful
Control "Next in slot" , wm_next_in_slot
StaticText ""
Control "Last Used Weapon", m8f_wm_select_last_used
StaticText ""
Control "Toggle Zoom", m8f_wm_toggle_zoom
}
OptionMenu mg_Gameplay
{
Title "m_Gizmos Gameplay Options"
StaticText ""
Option "Infinite Ammo for Slot 2", m8f_wm_InfiniteSlot2Ammo, YesNo
StaticText ""
Option "Change FOV when holstered" , m8f_wm_HolsterFovEnabled , OnOff
Slider "FOV when holstered" , m8f_wm_HolsterFov , 45.0, 180.0, 5.0
Slider "Speed with holstered weapon", M8fWeaponMenuHolsterSpeedMultiplier, 0.0, 3.0, 0.2
StaticText "Set this to 0.0 to disable speed change.", Black
StaticText ""
Slider "Zoom Factor", m8f_wm_ZoomFactor, 1.0, 3.0, 0.1
StaticText "Set this to 1.0 if the weapon has its own zoom." , Black
StaticText "Don't change this while zoomed." , Black
StaticText ""
Slider "Speed while zoomed" , m8f_wm_ZoomSpeedMultiplier , 0.1, 1.0, 0.1
Option "Zoom allowed on Slot 1" , m8f_wm_IsNotSlot1Melee , YesNo
Option "Lower weapon while zoomed", m8f_wm_LowerWeaponOnZoom, YesNo
StaticText "Don't change this while zoomed.", Black
StaticText ""
StaticText "Slomo Bullettime by Spaceman333", 1
Option "Toggle Slomo on Zoom In" , m8f_wm_SlomoOnZoomIn , OnOff
Option "Toggle Slomo on Zoom Out" , m8f_wm_SlomoOnZoomOut , OnOff
StaticText ""
StaticText "Target Spy", 1
Option "Toggle Target Spy at Zoom In/Out" , m8f_wm_TargetSpyOnZoom , OnOff
StaticText ""
StaticText "Laser Sight", 1
Option "Toggle Laser Sight at Zoom In/Out" , m8f_wm_LaserOnZoom, YesNo
}
OptionMenu mg_Sound
{
Title "m_Gizmos Sound Options"
StaticText ""
Option "Play sound on weapon change" , m8f_wm_PlaySoundOnWeaponChange, OnOff
Option "Sound on weapon change" , mg_weapon_change_sound, mg_SwitchSoundOptions
}
// Option values ///////////////////////////////////////////////////////////////
OptionString mg_SwitchSoundOptions
{
"wmenu/switch1" , "Click"
"wmenu/switch2" , "Hum"
"wmenu/switch3" , "Chk"
"menu/cursor" , "Menu cursor"
"menu/change" , "Menu change"
"misc/w_pkup" , "Weapon pickup"
}