]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/command/cmd.qh
Show a welcome window with MOTD on server connection
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / cmd.qh
1 #pragma once
2
3 float autocvar_sv_clientcommand_antispam_time;
4 int autocvar_sv_clientcommand_antispam_count;
5
6 .float cmd_floodtime;
7 .float cmd_floodcount;
8
9 string MapVote_Suggest(entity this, string m);
10
11 void serverinfo_welcomemessage_send(entity this);
12
13 // used by common/command/generic.qc:GenericCommand_dumpcommands to list all commands into a .txt file
14 void ClientCommand_macro_write_aliases(float fh);