Firestorm
07-09-2006, 10:52 AM
// DESCRIPTION:
// ============
//
// - This plugin let's you limit the amount of VoiceCommands
// each player can use. You can stop people from spamming
// "Go! Go! Go!", "Need backup!", "Need Ammo!" and all the
// other VoiceCommands.
// - Amount of allowed VCs per round/respawn is definable
// - Admins with flag "a" (ADMIN_IMMUNITY) can be excluded
// from the limitations
//
// USAGE (cvars for amxx.cfg):
// ===========================
//
// dod_limitvoicecmds_enabled <1/0> = enable/disable limiting
// the amount of VoiceCommands
// players can use
//
// dod_limitvoicecmds_maxvoicecmds <#> = amount of allowed VoiceCommands
// for each player
// (set to 0 to disable all VCs)
//
// dod_limitvoicecmds_resetcount <1/2/0> = reset player's VoiceCommand count
// 1 = reset after each round
// 2 = reset on each respawn
// 0 = only reset on mapchange
//
// dod_limitvoicecmds_obeyimmunity <1/0> = enable/disable Immunity for
// admins
//
//
// CHANGELOG:
// ==========
//
// - 22.08.2005 Version 0.5beta
// Initial Release
//
// - 02.07.2007 Version 0.6
// - using pcvar system now
// - changed cvar names, please review them!
// - added round state "Draw" to VoiceCmd reset
// - added global tracking cvar
//
// ============
//
// - This plugin let's you limit the amount of VoiceCommands
// each player can use. You can stop people from spamming
// "Go! Go! Go!", "Need backup!", "Need Ammo!" and all the
// other VoiceCommands.
// - Amount of allowed VCs per round/respawn is definable
// - Admins with flag "a" (ADMIN_IMMUNITY) can be excluded
// from the limitations
//
// USAGE (cvars for amxx.cfg):
// ===========================
//
// dod_limitvoicecmds_enabled <1/0> = enable/disable limiting
// the amount of VoiceCommands
// players can use
//
// dod_limitvoicecmds_maxvoicecmds <#> = amount of allowed VoiceCommands
// for each player
// (set to 0 to disable all VCs)
//
// dod_limitvoicecmds_resetcount <1/2/0> = reset player's VoiceCommand count
// 1 = reset after each round
// 2 = reset on each respawn
// 0 = only reset on mapchange
//
// dod_limitvoicecmds_obeyimmunity <1/0> = enable/disable Immunity for
// admins
//
//
// CHANGELOG:
// ==========
//
// - 22.08.2005 Version 0.5beta
// Initial Release
//
// - 02.07.2007 Version 0.6
// - using pcvar system now
// - changed cvar names, please review them!
// - added round state "Draw" to VoiceCmd reset
// - added global tracking cvar
//