From 5ee48f60a20959b515b0809c5493f301ab838d72 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Thu, 5 Apr 2007 07:59:27 +0000 Subject: [PATCH] Added comments to core.cfg --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40674 --- configs/core.cfg | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/configs/core.cfg b/configs/core.cfg index 06a97600..43e0fb45 100644 --- a/configs/core.cfg +++ b/configs/core.cfg @@ -1,10 +1,39 @@ +/** + * This file is used to set various options that are important to SourceMod's core. + * If this file is missing or an option in this file is missing, then the default values will be used. + */ "Core" { + /** + * Relative path to SourceMod's base directory. This is relative to the game/mod directory. + * Only change this if you have installed SourceMod in a non-default location. + * + * The default value is "addons/sourcemod" + */ "BasePath" "addons/sourcemod" + /** + * This option determines if SourceMod logging is enabled. + * + * "on" - Logging is enabled (default) + * "off" - Logging is disabled + */ "Logging" "on" + /** + * This option determines how SourceMod logging should be handled. + * + * "daily" - New log file is created for each day (default) + * "map" - New log file is created for each map change + * "game" - Use game's log files + */ "LogMode" "daily" + /** + * Language that multilingual enabled plugins and extensions will use to print messages. + * Only languages listed in languages.cfg are valid. + * + * The default value is "en" + */ "ServerLang" "en" }