forked from phoenixprojectsoftware/zamnhlmp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spectatormenu.txt
58 lines (41 loc) · 1.02 KB
/
spectatormenu.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
// Command Menu definition
//
// Basic Format:
// "<Bound Key>" "<Button Text>" "<Command sent to server>"
//
//
//
//
// Buttons can also open up submenus, as follows:
// {
// "Some More Options",
// {
// ...
// }
// }
//
//
// Buttons preceded with "CUSTOM" are handled in special ways. They can only be moved
// around or deleted.
//
//
// Limitations:
// Maximum of 50 menus.
// Maximum of 100 buttons per menu.
//--------------------------------------------------------
// Everything below here is editable
"6" "OK" "spec_menu 0"
"5" "Help" "spec_help"
"4" "Settings"
{
TOGGLE "6" "Chat Messages" "hud_saytext"
TOGGLE "5" "Show Status" "spec_drawstatus"
TOGGLE "4" "View Cone" "spec_drawcone"
TOGGLE "3" "Player Names" "spec_drawnames"
}
TOGGLE "3" "Picture-In-Picture" "spec_pip"
TOGGLE "2" "Auto Director" "spec_autodirector"
//TEAM0 "3" "Join Game" "joingame;chooseteam"
"1" "Show Scores" "togglescores"
// Here are the rest of the buttons and submenus
// You can change these safely if you want.