// Macro system for console commands
// ===================================
+// These functions are here specifically to add special + - commands to the game, and are not really normal commands.
+// Please add client commands to the function above this, as this is only for special reasons.
#define CONSOLE_COMMANDS_NORMAL \
CONSOLE_COMMAND("+showscores", { scoreboard_showscores = TRUE; }) \
CONSOLE_COMMAND("-showscores", { scoreboard_showscores = FALSE; }) \
*/
-// ===========================
-// Macro system for commands
-// ===========================
+// ==================================
+// Macro system for server commands
+// ==================================
// Do not hard code aliases for these, instead create them in commands.cfg... also: keep in alphabetical order, please ;)
#define SERVER_COMMANDS(request,arguments) \