-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommandmenu.txt
More file actions
156 lines (140 loc) · 3.46 KB
/
commandmenu.txt
File metadata and controls
156 lines (140 loc) · 3.46 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
// Command Menu definition
//
// Basic Format:
// "<Bound Key>" "<Button Text>" "<Command sent to server>"
//
// Or you can check for a specific class:
// <Class> "<BoundKey>" "<Button Text>" "<Command sent to server>"
// Where <Class> is one of: SCOUT, SNIPER, SOLDIER, DEMOMAN, MEDIC, HWGUY, PYRO, SPY, ENGINEER
//
// Or you can check for a specific map:
// MAP <MapName> "<BoundKey>" "<Button Text>" "<Command sent to server>"
// Where <MapName> is the name of the map, without the ".bsp".
//
// Or you can check for a specific team:
// TEAM1 "<BoundKey>" "<Button Text>" "<Command sent to server>"
// TEAM2 "<BoundKey>" "<Button Text>" "<Command sent to server>"
// TEAM3, TEAM4 work as well
//
// Buttons can also open up submenus, as follows:
// {
// "Some More Options",
// {
// ...
// }
// }
//
// Class can be any of the following:
// SCOUT, SNIPER, SOLDER, DEMOMAN, MEDIC, HWGUY, PYRO, SPY, ENGINEER
// Buttons prepended with a class name will only be seen if the player
// is that class.
//
// Buttons preceded with "CUSTOM" are handled in special ways. They can only be moved
// around or deleted.
//
//
// Limitations:
// Maximum of 40 menus.
// Maximum of 100 buttons per menu.
//--------------------------------------------------------
// Everything below here is editable
"1" "Settings"
{
"0" "Help"
{
CUSTOM "1" "AG Mod info" "!README"
CUSTOM "2" "Server info" "!SERVERINFO"
CUSTOM "3" "Map description" "!MAPBRIEFING"
"4" "Console help" "help;toggleconsole"
}
"1" "Timer"
{
"1" "Remaining" "hud_timer 1"
"2" "Elapsed" "hud_timer 2"
"3" "Clock" "hud_timer 3"
"4" "Off" "hud_timer 0"
}
"2" "Weapon Switch"
{
"1" "On" "cl_autowepswitch 1"
"2" "Off" "cl_autowepswitch 0"
"3" "AG" "cl_autowepswitch 2"
}
"3" "Mini Scoreboard"
{
"1" "2 players/teams" "cl_scores 2"
"2" "4 players/teams" "cl_scores 4"
"3" "Off" "cl_scores 0"
}
"4" "Old Scoreboard"
{
"1" "On" "cl_old_scoreboard 1"
"2" "Off" "cl_old_scoreboard 0"
}
"5" "See only team talk"
{
"1" "On" "cl_only_team_talk 1"
"2" "Off" "cl_only_team_talk 0"
}
"6" "Show Colors"
{
"1" "On" "cl_show_colors 1"
"2" "Off" "cl_show_colors 0"
}
"7" "Viewmodel"
{
"1" "On" "r_drawviewmodel 1"
"2" "Off" "r_drawviewmodel 0"
}
"8" "Netgraph"
{
"1" "On" "net_graph 3"
"2" "Off" "net_graph 0"
}
"9" "Showfps"
{
"1" "On" "cl_showfps 1"
"2" "Off" "cl_showfps 0"
}
}
"2" "Spectate" "spectate"
"3" "Vote"
{
"1" "Vote Yes" "yes"
"2" "Vote No" "no"
"3" "Start Match" "agstart"
"4" "Start Match Full" "agstart full"
"5" "Call timeout" "timeout"
"6" "Pause server" "agpause"
"7" "Show settings" "settings"
}
"4" "Change Gamemode"
{
"1" "Basic List"
{
"1" "Free For All" "ffa"
"2" "Team Deathmatch" "tdm"
"3" "Capture The Flag" "ctf"
"4" "Last Man Standing" "lms"
"5" "Last Team Standing" "lts"
"6" "Instagib" "instagib"
"7" "Arena" "arena"
"8" "Arcade" "arcade"
"9" "Shotgun&Bow" "sgbow"
}
"2" "Extended List"
{
"1" "Free For All X" "ffax"
"2" "Team Deathmatch II " "tdm2"
"3" "Team Deathmatch III "tdm3"
"4" "Team Deathmatch IV" "tdm4"
"5" "Team Deathmatch X" "tdmx"
"6" "Capture The Flag X" "ctfx"
"8" "Clanbase Cup" "cbcup"
"9" "HLCCL" "hlccl"
}
}
"5" "Change Map" "togglemapbrowser"
"6" "IRC Chat" "toggleirc"
"7" "Winamp" "togglewinamp"
"8" "Server browser" "togglebrowser"