From 16c1442f471382d9ceeaaddd03e8635ea23d2eed Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Mon, 9 Jul 2007 04:06:12 +0000 Subject: [PATCH] This was long overdue - added missing cvars to sourcemod.cfg --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401086 --- configs/cfg/sourcemod.cfg | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/configs/cfg/sourcemod.cfg b/configs/cfg/sourcemod.cfg index df0b3a2f..f7b4fe23 100644 --- a/configs/cfg/sourcemod.cfg +++ b/configs/cfg/sourcemod.cfg @@ -10,5 +10,30 @@ // 8: If 4 is specified, admin names will be shown. // 16: Always show admin names to root users. // -- -// Default: "13" (1+4+8) -sm_show_activity "13" +// Default: 13 (1+4+8) +sm_show_activity 13 + +// Specifies the amount of time that is allowed between chat messages. This +// includes the say and say_team commands. If a client sends a message faster +// than this time, they receive a flood token. When the client has accumulated +// 3 or more tokens, a warning message is shown instead of the chat message. +// -- +// Requires: antiflood.smx +// Default: 0.75 +sm_flood_time 0.75 + +// Specifies the number of reserved player slots. Users with the reservation +// admin flag set will be able to join the server when there are no public slots +// remaining. If someone does not have this flag, they will be kicked. +// (Public slots are defined as: maxplayers - number of reserved slots) +// -- +// Requires: reservedslots.smx +// Default: 0 +sm_reserved_slots 0 + +// Specifies whether or not reserved slots will be hidden (subtracted from max +// slot count). Valid values are 0 (visible) or 1 (hidden). +// -- +// Requires: reservedslots.smx +// Default: 0 +sm_hide_slots 0