Difference between revisions of "Base Plugins (SourceMod)"
(New page: The following is a full list of SourceMod's base plugins and the purpose of each one. Plugins with a bold name are safe to be used in War Mode, as they do not...) |
m |
||
Line 4: | Line 4: | ||
=Default Plugins= | =Default Plugins= | ||
− | {| style="width:600px;" | + | {| style="width:600px;" cellpadding="5" |
|- class="t2th" | |- class="t2th" | ||
|Plugin File | |Plugin File | ||
Line 54: | Line 54: | ||
If a plugin has cvars, you can load it once to generate its config file in <tt>cfg/sourcemod</tt>. | If a plugin has cvars, you can load it once to generate its config file in <tt>cfg/sourcemod</tt>. | ||
− | {| style="width:600px;" | + | {| style="width:600px;" cellpadding="5" |
|- class="t2th" | |- class="t2th" | ||
|Plugin File | |Plugin File |
Revision as of 22:25, 14 December 2007
The following is a full list of SourceMod's base plugins and the purpose of each one.
Plugins with a bold name are safe to be used in War Mode, as they do not contain anything that could be considered abusive or unfair.
Default Plugins
Plugin File | Purpose |
admin-flatfile | Loads admins from the admin configuration files. |
adminhelp | Provides the sm_help command (lists other commands and their syntax). |
adminmenu | Provides the admin menu API and core features. |
basebans | Provides basic banning commands and menu options. |
basechat | Provides commands and menu options for managing player's abilities to use voice chat or say chat. |
basecomm | Provides functionality for tweaking how players can communicate (in comparison to sv_alltalk). |
basecommands | Provides core administrative commands unrelated to player abuse. |
basefuncommands | Provides "fun" commands, like slapping. |
basefunvotes | Provides votes based on basefuncommands. |
basetriggers | Provides automated responses to phrases such as "nextmap", "thetime", and "timeleft". |
basevotes | Provides basic voting commands, such as map voting. |
nextmap | Allows admins or other plugins to dynamically alter or retrieve the effective mapcycle. |
reservedslots | Allows the server to have slots that are reserved for administrators (or privileged people), to ensure prioritized entry. |
Extra Plugins
The following plugins are in the addons/sourcemod/plugins/disabled folder by default, and must be moved out of that folder to be enabled.
If a plugin has cvars, you can load it once to generate its config file in cfg/sourcemod.
Plugin File | Purpose |
admin-sql-prefetch | Loads admins from an SQL database as a big lump every mapchange. If enabled, admin-sql-threaded must be disabled; see SQL Admins. |
admin-sql-threaded | Loads admins from an SQL database dynamically as each admin connects. If enabled, admin-sql-prefetch must be disabled; see SQL Admins. |
mapchooser | Provides an automated system for players to vote for map changes. If enabled, rockthevote and randomcycle should be disabled. Cvars are generated in plugin.mapchooser.cfg. |
randomcycle | Randomizes the map cycle. If enabled, mapchooser and rockthevote should be disabled. Cvars are generated in plugin.randomcycle.cfg. |
rockthevote | Provides a player-initiated system for players to vote for map changes. If enabled, mapchooser and randomcycle should be disabled. Cvars are generated in plugin.rtv.cfg. |