]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/command/banning.qh
Merge branch 'master' into Mario/hagar_notfixed
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / banning.qh
1 #pragma once
2
3 // ====================================
4 //  Declarations for kick/ban commands
5 //  Last updated: December 29th, 2011
6 // =====================================
7
8 #define GET_BAN_ARG(v, d) if (argc > reason_arg) { if ((v = stof(argv(reason_arg))) != 0) ++reason_arg; else v = d; } else { v = d; }
9 #define GET_BAN_REASON(v, d) if (argc > reason_arg) v = substring(command, argv_start_index(reason_arg), strlen(command) - argv_start_index(reason_arg)); else v = d;
10
11 void Ban_KickBanClient(entity client, float bantime, float masksize, string reason);
12 void Ban_View();
13 float Ban_Insert(string ip, float bantime, string reason, float dosync);
14 float Ban_Delete(float i);
15
16 // used by common/command/generic.qc:GenericCommand_dumpcommands to list all commands into a .txt file
17 void BanCommand_macro_write_aliases(float fh);
18
19 void BanCommand_macro_help();
20 float BanCommand_macro_usage(float argc);