]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/command/cmd.qh
Merge branch 'master' into Mario/monsters
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / cmd.qh
1 // =================================================
2 //  Declarations for server side networked commands
3 //  Last updated: December 26th, 2011
4 // =================================================
5
6 .float cmd_floodtime;
7 .float cmd_floodcount;
8 .float lms_spectate_warning;
9 .float checkfail;
10
11 // number of monsters spawned with mobspawn command
12 float totalspawned;
13
14 string MapVote_Suggest(string m);
15
16 // used by common/command/generic.qc:GenericCommand_dumpcommands to list all commands into a .txt file
17 void ClientCommand_macro_write_aliases(float fh);