From 7b2455db2e4ac5286bdbca5e97ff972a39d4660a Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 8 Dec 2006 22:15:15 +0000 Subject: [PATCH] added initial plugin settings file --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40204 --- configs/plugin_settings.cfg | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 configs/plugin_settings.cfg diff --git a/configs/plugin_settings.cfg b/configs/plugin_settings.cfg new file mode 100644 index 00000000..0e97e68d --- /dev/null +++ b/configs/plugin_settings.cfg @@ -0,0 +1,32 @@ +/** + * Each sub-section of "Plugins" should have a title which specifies a plugin filename. + * Filenames have a wildcard of *. Appending .amxx is not required. + * If the filename has no explicit path, it will be patched to any sub-path in the plugins folder. + * + * Available properties for plugins are: + * "pause" - Whether or not the plugin should load paused - "yes" or "no" (defualt) + * "lifetime" - Lifetime of the plugin. Options: + * "private" - Plugin is privately maintained and receives no forwards from Core + * "mapsync" - Plugins should be reloaded on mapchange if changed (default) + * "maponly" - Plugin should be unloaded at the end of the map + * "global" - Plugin will never be unloaded or updated + * + * You can also have an "Options" section declaring options to pass onto the JIT: + * "debug" - Whether or not to load the plugin in debug mode + * "inl_errors" - Internal optimization to inline error checks. Results in larger but faster code. + * "inl_natives" - Internal optimization to inline native calls. Results in larger code (unknown speed effect). + */ + +"Plugins" +{ + "*" + { + "pause" "no" + "lifetime" "mapsync" + + "Options" + { + "debug" "no" + } + } +}