]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - commands.cfg
Update commands.cfg with new command listing from the new command I added (dumpcomman...
[xonotic/xonotic-data.pk3dir.git] / commands.cfg
1 // =================================================================
2 //  Master config for managing various command aliases and settings
3 // =================================================================
4
5 // Execute commands based on whether it is dedicated a server or a client.
6 alias "_detect_dedicated_$qport" "${* asis}"
7 alias "_detect_dedicated_0" ""
8 alias _if_dedicated "_detect_dedicated_$qport ${* asis}"
9 alias if_client "${* asis}"
10 alias if_dedicated "${* asis}"
11 _if_dedicated alias if_client ""
12 if_client alias if_dedicated ""
13
14 if_dedicated "alias" qc_cmd_sv     "sv_cmd $$*"
15 if_client    "alias" qc_cmd_cl     "cl_cmd $$*"
16 if_client    "alias" qc_cmd_cmd    "cmd $$*"
17 if_dedicated "alias" qc_cmd_svmenu "sv_cmd $$*"
18 if_client    "alias" qc_cmd_svmenu "menu_cmd $$*"
19 if_dedicated "alias" qc_cmd_svcl   "sv_cmd $$*"
20 if_client    "alias" qc_cmd_svcl   "cl_cmd $$*"
21 if_dedicated "alias" qc_cmd_svcmd  "sv_cmd $$*"
22 if_client    "alias" qc_cmd_svcmd  "cmd $$*"
23
24
25 // ========
26 //  common
27 // ========
28 // networked/server common commands
29 alias cvar_changes         "qc_cmd_svcmd  cvar_changes         ${* ?}" // Prints a list of all changed server cvars
30 alias cvar_purechanges     "qc_cmd_svcmd  cvar_purechanges     ${* ?}" // Prints a list of all changed gameplay cvars
31 alias info                 "qc_cmd_svcmd  info                 ${* ?}" // Request for unique server information set up by admin
32 alias ladder               "qc_cmd_svcmd  ladder               ${* ?}" // Get information about top players if supported
33 alias lsmaps               "qc_cmd_svcmd  lsmaps               ${* ?}" // List maps which can be used with the current game mode
34 alias lsnewmaps            "qc_cmd_svcmd  lsnewmaps            ${* ?}" // List maps which have no records or are seemingly unplayed yet
35 alias maplist              "qc_cmd_svcmd  maplist              ${* ?}" // Display full server maplist reply
36 alias rankings             "qc_cmd_svcmd  rankings             ${* ?}" // Print information about rankings
37 alias records              "qc_cmd_svcmd  records              ${* ?}" // List top 10 records for the current map
38 alias teamstatus           "qc_cmd_svcmd  teamstatus           ${* ?}" // Show information about player and team scores
39 alias time                 "qc_cmd_svcmd  time                 ${* ?}" // Print different formats/readouts of time
40 alias timein               "qc_cmd_svcmd  timein               ${* ?}" // Resume the game from being paused with a timeout
41 alias timeout              "qc_cmd_svcmd  timeout              ${* ?}" // Call a timeout which pauses the game for certain amount of time unless unpaused
42 alias vote                 "qc_cmd_svcmd  vote                 ${* ?}" // Request an action to be voted upon by players
43 alias who                  "qc_cmd_svcmd  who                  ${* ?}" // Display detailed client information about all players
44
45 // generic commands (across all programs)
46 alias addtolist            "qc_cmd_svmenu addtolist            ${* ?}" // Add a string to a cvar at the end of a list
47 alias dumpcommands         "qc_cmd_svmenu dumpcommands         ${* ?}" // Dump all commands on the program to *_cmd_dump.txt
48 alias maplist              "qc_cmd_svmenu maplist              ${* ?}" // Automatic control of maplist
49 alias rpn                  "qc_cmd_svmenu rpn                  ${* ?}" // RPN calculator
50 //alias settemp            "qc_cmd_svmenu settemp              ${* ?}" // Temporarily set a value to a cvar which is restored later
51 //alias settemp_restore    "qc_cmd_svmenu settemp_restore      ${* ?}" // Restore all cvars set by settemp command
52
53 // other aliases for common commands
54 alias g_hitplots_add "qc_cmd_svmenu rpn /g_hitplots_individuals g_hitplots_individuals ${1 !} union def"
55 alias g_hitplots_remove "qc_cmd_svmenu rpn /g_hitplots_individuals g_hitplots_individuals ${1 !} difference def"
56
57 alias g_maplist_add     "qc_cmd_svmenu maplist add ${* ?}"
58 alias g_maplist_remove  "qc_cmd_svmenu maplist remove ${* ?}"
59 alias g_maplist_putfirst        "qc_cmd_svmenu maplist remove ${* ?} ; qc_cmd maplist add ${* ?}"
60 alias g_maplist_shufflenow      "qc_cmd_svmenu maplist shuffle"
61 alias g_maplist_cleanup "qc_cmd_svmenu maplist cleanup" // removes maps that don't exist from the map list
62
63 alias addfav "qc_cmd_svmenu addtolist net_slist_favorites ${* ?}"
64 alias addvote "qc_cmd_svmenu addtolist sv_vote_commands ${* ?}"
65
66
67 // ========================
68 //  engine command aliases
69 // ========================
70 alias bsp "ls maps/*.bsp"
71 alias chmap "changelevel ${* ?}"
72 alias clearmap "disconnect"
73 alias ply "playdemo $1"
74 alias rec "record demos/${1 !}"
75 alias search "apropos ${* ?}"
76 alias sv_loadconfig "exec $serverconfig"
77 alias sv_restart "say \"Server will restart at the end of the match, you will all be reconnected automatically. ${* ?} \"; quit_and_redirect self"
78 alias tdem "timedemo $1"
79
80
81 // ===============================================
82 //  menu_cmd (menu command) - menu/command/menu_cmd.qc
83 // ===============================================
84 alias menu_showteamselect "menu_cmd directmenu TeamSelect"
85 alias menu_showhudexit "menu_cmd directmenu HUDExit"
86 alias menu_showhudoptions "menu_cmd directpanelhudmenu ${* ?}"
87 alias menu_showsandboxtools "menu_cmd directmenu SandboxTools"
88 alias menu_showquitdialog "menu_cmd directmenu Quit"
89
90 // command executed before loading a map by the menu
91 // makes sure maxplayers is at least minplayers or bot_number + 1
92 alias _menu_loadmap_prepare_maxpl "maxplayers $_menu_loadmap_maxplayers"
93 alias menu_loadmap_prepare "disconnect; wait; g_campaign 0; menu_cmd rpn /_menu_loadmap_maxplayers menu_maxplayers minplayers bot_number 1 add max max def; _menu_loadmap_prepare_maxpl; g_maplist_shufflenow"
94
95
96 // ==========================================================
97 //  cl_cmd (client local command) - client/command/cl_cmd.qc
98 // ==========================================================
99 // commented out commands are really only intended for internal use
100 alias blurtest             "qc_cmd_cl     blurtest             ${* ?}" // Feature for testing blur postprocessing
101 alias debugmodel           "qc_cmd_cl     debugmodel           ${* ?}" // Spawn a debug model manually
102 //alias handlevote         "qc_cmd_cl     handlevote           ${* ?}" // System to handle selecting a vote or option
103 alias hud                  "qc_cmd_cl     hud                  ${* ?}" // Commands regarding/controlling the HUD system
104 alias localprint           "qc_cmd_cl     localprint           ${* ?}" // Create your own centerprint sent to yourself
105 //alias mv_download        "qc_cmd_cl     mv_download          ${* ?}" // Retrieve mapshot picture from the server
106 alias sendcvar             "qc_cmd_cl     sendcvar             ${* ?}" // Send a cvar to the server (like weaponpriority)
107
108 // other aliases for local commands
109 alias hud_configure "qc_cmd_cl hud configure"
110 alias hud_save "qc_cmd_cl hud save ${* ?}"
111 alias radar "qc_cmd_cl hud radar ${* ?}"
112 alias scoreboard_columns_help "qc_cmd_cl hud scoreboard_columns_help"
113 alias scoreboard_columns_set "qc_cmd_cl hud scoreboard_columns_set ${* ?}"
114
115 // changes a cvar and reports it to the server (for the client to notify the server about changes)
116 alias setreport "set \"$1\" \"$2\" ; sendcvar \"$1\""
117
118
119 // ========================================================
120 //  cmd (client-to-server command) - server/command/cmd.qc
121 // ========================================================
122 set sv_clientcommand_antispam_time 1 "Amount of seconds after a command before another command can be called again without being considered spam. (Use -1 for no antispam limit)"
123 set sv_clientcommand_antispam_count 8 "Amount of commands considered spam before commands are rejected."
124 seta sv_status_privacy 1 "hide IP addresses from \"status\" and \"who\" replies shown to clients"
125 seta cl_autoswitch 1 "automatically switch to newly picked up weapons if they are better than what you are carrying"
126
127 // commented out commands are really only intended for internal use, or already have declaration in the engine
128 alias autoswitch           "qc_cmd_cmd    autoswitch           ${* ?}" // Whether or not to switch automatically when getting a better weapon
129 alias checkfail            "qc_cmd_cmd    checkfail            ${* ?}" // Report if a client-side check failed
130 alias clientversion        "qc_cmd_cmd    clientversion        ${* ?}" // Release version of the game
131 //alias getmapvotepic      "qc_cmd_cmd    getmapvotepic        ${* ?}" // Retrieve mapshot picture from the server
132 alias join                 "qc_cmd_cmd    join                 ${* ?}" // Become a player in the game
133 alias ready                "qc_cmd_cmd    ready                ${* ?}" // Qualify as ready to end warmup stage (or restart server if allowed)
134 alias reportcvar           "qc_cmd_cmd    reportcvar           ${* ?}" // Old system for sending a client cvar to the server
135 //alias say                "qc_cmd_cmd    say                  ${* ?}" // Print a message to chat to all players
136 //alias say_team           "qc_cmd_cmd    say_team             ${* ?}" // Print a message to chat to all team mates
137 alias selectteam           "qc_cmd_cmd    selectteam           ${* ?}" // Attempt to choose a team to join into
138 alias selfstuff            "qc_cmd_cmd    selfstuff            ${* ?}" // Stuffcmd a command to your own client
139 alias sentcvar             "qc_cmd_cmd    sentcvar             ${* ?}" // New system for sending a client cvar to the server
140 alias spectate             "qc_cmd_cmd    spectate             ${* ?}" // Become an observer
141 alias suggestmap           "qc_cmd_cmd    suggestmap           ${* ?}" // Suggest a map to the mapvote at match end
142 //alias tell               "qc_cmd_cmd    tell                 ${* ?}" // Send a message directly to a player
143 alias voice                "qc_cmd_cmd    voice                ${* ?}" // Send voice message via sound
144
145 // other aliases for client-to-server commands
146 alias autoswitch "set cl_autoswitch ${1 ?} ; cmd autoswitch ${1 ?}" // todo
147
148 alias team_red "cmd selectteam red; cmd join"
149 alias team_blue "cmd selectteam blue; cmd join"
150 alias team_pink "cmd selectteam pink; cmd join"
151 alias team_yellow "cmd selectteam yellow; cmd join"
152 alias team_auto "cmd selectteam auto; cmd join"
153
154 alias spec "spectate"
155
156 // mutator aliases
157 alias sandbox "cmd g_sandbox ${* ?}"
158
159
160 // ============================================================
161 //  sv_cmd (server console command) - server/command/sv_cmd.qc
162 // ============================================================
163 alias adminmsg             "qc_cmd_sv     adminmsg             ${* ?}" // Send an admin message to a client directly
164 alias allready             "qc_cmd_sv     allready             ${* ?}" // Restart the server and reset the players
165 alias allspec              "qc_cmd_sv     allspec              ${* ?}" // Force all players to spectate
166 alias anticheat            "qc_cmd_sv     anticheat            ${* ?}" // Create an anticheat report for a client
167 alias bbox                 "qc_cmd_sv     bbox                 ${* ?}" // Print detailed information about world size
168 alias bot_cmd              "qc_cmd_sv     bot_cmd              ${* ?}" // Control and send commands to bots
169 alias cointoss             "qc_cmd_sv     cointoss             ${* ?}" // Flip a virtual coin and give random result
170 alias database             "qc_cmd_sv     database             ${* ?}" // Extra controls of the serverprogs database
171 alias defer_clear          "qc_cmd_sv     defer_clear          ${* ?}" // Clear all queued defer commands for a specific client
172 alias defer_clear_all      "qc_cmd_sv     defer_clear_all      ${* ?}" // Clear all queued defer commands for all clients
173 alias delrec               "qc_cmd_sv     delrec               ${* ?}" // Delete race time record for a map
174 alias effectindexdump      "qc_cmd_sv     effectindexdump      ${* ?}" // Dump list of effects from code and effectinfo.txt
175 alias extendmatchtime      "qc_cmd_sv     extendmatchtime      ${* ?}" // Increase the timelimit value incrementally
176 alias find                 "qc_cmd_sv     find                 ${* ?}" // Search through entities for matching classname
177 alias gametype             "qc_cmd_sv     gametype             ${* ?}" // Simple command to change the active gametype
178 alias gettaginfo           "qc_cmd_sv     gettaginfo           ${* ?}" // Get specific information about a weapon model
179 alias gotomap              "qc_cmd_sv     gotomap              ${* ?}" // Simple command to switch to another map
180 alias lockteams            "qc_cmd_sv     lockteams            ${* ?}" // Disable the ability for players to switch or enter teams
181 alias make_mapinfo         "qc_cmd_sv     make_mapinfo         ${* ?}" // Automatically rebuild mapinfo files
182 alias moveplayer           "qc_cmd_sv     moveplayer           ${* ?}" // Change the team/status of a player
183 alias nospectators         "qc_cmd_sv     nospectators         ${* ?}" // Automatically remove spectators from a match
184 alias playerdemo           "qc_cmd_sv     playerdemo           ${* ?}" // Control the ability to save demos of players
185 alias printstats           "qc_cmd_sv     printstats           ${* ?}" // Dump eventlog player stats and other score information
186 alias radarmap             "qc_cmd_sv     radarmap             ${* ?}" // Generate a radar image of the map
187 alias reducematchtime      "qc_cmd_sv     reducematchtime      ${* ?}" // Decrease the timelimit value incrementally
188 alias setbots              "qc_cmd_sv     setbots              ${* ?}" // Adjust how many bots are in the match
189 alias shuffleteams         "qc_cmd_sv     shuffleteams         ${* ?}" // Randomly move players to different teams
190 alias stuffto              "qc_cmd_sv     stuffto              ${* ?}" // Send a command to be executed on a client
191 alias trace                "qc_cmd_sv     trace                ${* ?}" // Various debugging tools with tracing
192 alias unlockteams          "qc_cmd_sv     unlockteams          ${* ?}" // Enable the ability for players to switch or enter teams
193 alias warp                 "qc_cmd_sv     warp                 ${* ?}" // Choose different level in campaign
194
195 // other aliases for server commands
196 alias endmatch "timelimit -1"
197
198 alias savedb "sv_cmd database save \"${1 ?}\""
199 alias dumpdb "sv_cmd database dump \"${1 ?}\""
200 alias loaddb "sv_cmd database load \"${1 ?}\""
201
202 alias movetored "moveplayer ${1 ?} red"
203 alias movetoblue "moveplayer ${1 ?} blue"
204 alias movetopink "moveplayer ${1 ?} pink"
205 alias movetoyellow "moveplayer ${1 ?} yellow"
206 alias movetoauto "moveplayer ${1 ?} auto"
207
208
209 // =======================================================
210 //  Aliases for settemp subsystem. Warning: Do not touch. 
211 //  Usage: settemp variable value, next map resets it.
212 // =======================================================
213 alias settemp "qc_cmd_svcl settemp $$*"
214 alias settemp_restore "qc_cmd_svcl settemp_restore"
215
216
217 // ===================================
218 //  banning - server/command/ipban.qc
219 // ===================================
220 alias bans "sv_cmd bans"
221 alias ban "sv_cmd ban ${* ?}"         // usage: ban address(maybe incomplete, like 1.2.3) bantime(seconds)
222 alias kickban "sv_cmd kickban ${* ?}" // usage: kickban # playerno bantime(seconds) masksize(bytes)
223 alias unban "sv_cmd unban ${* ?}"     // usage: unban 3 (number from bans)
224
225
226 // =================================
227 //  voting - server/command/vote.qc
228 // =================================
229 set sv_vote_call 1 "Allow users to call a vote for the commands in sv_vote_commands"
230 set sv_vote_change 1 "Allow voters to change their mind after already voting"
231 set sv_vote_commands "restart fraglimit chmap gotomap nextmap endmatch reducematchtime extendmatchtime allready kick cointoss movetoauto" "these commands can be voted"
232 set sv_vote_only_commands ""
233 set sv_vote_master_commands "movetored movetoblue movetoyellow movetopink" "Commands which vote masters can execute by themselves" // maybe add kickban here (but then sv_vote_master 0)
234 set sv_vote_master 1    "Allows the use of the vote master system"
235 set sv_vote_master_callable 1 "When set, users can use \"vmaster\" to call a vote to become master of voting commands"
236 set sv_vote_master_password "" "when set, users can use \"vlogin PASSWORD\" to log in as master"
237 set sv_vote_master_playerlimit 2 "Minimum number of players needed for a player to be allowed to vote for master"
238 set sv_vote_no_stops_vote 1 "Allow the vote caller to stop his own vote simply by voting no"
239 set sv_vote_singlecount 0       "set to 1 to count votes once after timeout or to 0 to count with every vote"
240 set sv_vote_timeout 30  "a vote will timeout after this many seconds"
241 set sv_vote_wait 120    "a player can not call a vote again for this many seconds when his vote was not accepted"
242 set sv_vote_stop 15     "a player can not call a vote again for this many seconds when he stopped this vote (e.g. to correct it)"
243 set sv_vote_majority_factor 0.5 "What percentage of the PLAYERS constitute a majority? (Must be at least 0.5, recommended: 0.5)"
244 set sv_vote_majority_factor_of_voted 0.5 "What percentage of the VOTERS constitute a majority too? (Must be at least 0.5, recommended: 0.5)"
245 // when disabled, don't allow game type changes "note: set these two equal to JUST support simple majorities"
246 set sv_vote_override_mostrecent 0
247
248 alias vhelp "cmd vote help"
249 alias vstatus "cmd vote status"
250 alias vcall "cmd vote call ${* ?}"
251 alias vstop "cmd vote stop"
252 alias vmaster "cmd vote master"
253 alias vlogin "cmd vote login ${* ?}"
254 alias vdo "cmd vote do ${* ?}"
255 alias vyes "cl_cmd handlevote yes"
256 alias vno "cl_cmd handlevote no"
257 alias vdontcare "cmd vote dontcare"
258 alias vabstain "cmd vote abstain"
259
260 alias vmap "vcall gotomap ${1 ?}"
261 alias vnextmap "vcall nextmap ${1 ?}"
262 alias vkick "vcall kick ${1 ?}"
263 alias vkickban "vcall kickban ${1 ?}"
264 alias vend "vcall endmatch"
265 alias vdomap "vdo gotomap ${1 ?}"
266 alias vdokick "vdo kick ${* ?}"
267 alias vdokickban "vdo kickban ${* ?}"
268 alias vdoend "vdo endmatch"
269
270 // ======================
271 //  rcon server commands
272 // ======================
273 rcon_secure 1
274 set rcon_restricted_commands "restart fraglimit chmap gotomap endmatch reducematchtime extendmatchtime allready kick kickban \"sv_cmd bans\" \"sv_cmd unban *\" status \"sv_cmd teamstatus\" movetoauto movetored movetoblue movetoyellow movetopink"
275
276 // =============================
277 //  other miscellaneous aliases
278 // =============================
279 alias autoscreenshot "screenshot screenshots/autoscreenshot/${1 !}-${2 !}.jpg; echo \"^5A screenshot has been taken at request of the server.\""
280