finalizing rc3 builds
This commit is contained in:
parent
8df33abd70
commit
5286672268
|
@ -39,5 +39,7 @@ statsx.amxx ; stats on death or round end (CSX Module required!)
|
||||||
;miscstats.amxx ; bunch of events announcement for Counter-Strike
|
;miscstats.amxx ; bunch of events announcement for Counter-Strike
|
||||||
;stats_logging.amxx ; weapons stats logging (CSX Module required!)
|
;stats_logging.amxx ; weapons stats logging (CSX Module required!)
|
||||||
|
|
||||||
|
; Enable to use AMX Mod plugins
|
||||||
|
amxmod_compat.amxx ; AMX Mod backwards compatibility layer
|
||||||
|
|
||||||
; Custom - Add 3rd party plugins here
|
; Custom - Add 3rd party plugins here
|
||||||
|
|
|
@ -38,5 +38,7 @@ statscfg.amxx ; allows to manage stats plugins via menu and commands
|
||||||
;statssounds.amxx ; precache plugin for stats plugins
|
;statssounds.amxx ; precache plugin for stats plugins
|
||||||
;stats_logging.amxx ; weapons stats logging (DoD Module required!)
|
;stats_logging.amxx ; weapons stats logging (DoD Module required!)
|
||||||
|
|
||||||
|
; Enable to use AMX Mod plugins
|
||||||
|
amxmod_compat.amxx ; AMX Mod backwards compatibility layer
|
||||||
|
|
||||||
; Custom - Add 3rd party plugins here
|
; Custom - Add 3rd party plugins here
|
||||||
|
|
|
@ -33,6 +33,8 @@ timeleft.amxx ; displays time left on map
|
||||||
pausecfg.amxx ; allows to pause and unpause some plugins
|
pausecfg.amxx ; allows to pause and unpause some plugins
|
||||||
statscfg.amxx ; allows to manage stats plugins via menu and commands
|
statscfg.amxx ; allows to manage stats plugins via menu and commands
|
||||||
|
|
||||||
|
; Enable to use AMX Mod plugins
|
||||||
|
amxmod_compat.amxx ; AMX Mod backwards compatibility layer
|
||||||
|
|
||||||
; Custom - Add 3rd party plugins here
|
; Custom - Add 3rd party plugins here
|
||||||
EvolutionX.Core.amxx ; Adds extra plugin functions for Earth's Special Forces
|
EvolutionX.Core.amxx ; Adds extra plugin functions for Earth's Special Forces
|
||||||
|
|
|
@ -37,4 +37,7 @@ idlekicker.amxx ; kicks idle players
|
||||||
nscommands.amxx ; extra commands for Natural-Selection
|
nscommands.amxx ; extra commands for Natural-Selection
|
||||||
;unstuck.amxx ; Free stuck players (engine & ns modules required!)
|
;unstuck.amxx ; Free stuck players (engine & ns modules required!)
|
||||||
|
|
||||||
|
; Enable to use AMX Mod plugins
|
||||||
|
amxmod_compat.amxx ; AMX Mod backwards compatibility layer
|
||||||
|
|
||||||
; Custom - Add 3rd party plugins here
|
; Custom - Add 3rd party plugins here
|
||||||
|
|
|
@ -33,5 +33,8 @@ timeleft.amxx ; displays time left on map
|
||||||
pausecfg.amxx ; allows to pause and unpause some plugins
|
pausecfg.amxx ; allows to pause and unpause some plugins
|
||||||
statscfg.amxx ; allows to manage stats plugins via menu and commands
|
statscfg.amxx ; allows to manage stats plugins via menu and commands
|
||||||
|
|
||||||
|
; Enable to use AMX Mod plugins
|
||||||
|
amxmod_compat.amxx ; AMX Mod backwards compatibility layer
|
||||||
|
|
||||||
|
|
||||||
; Custom - Add 3rd party plugins here
|
; Custom - Add 3rd party plugins here
|
||||||
|
|
|
@ -38,5 +38,7 @@ statscfg.amxx ; allows to manage stats plugins via menu and commands
|
||||||
;statssounds.amxx ; precache plugin for stats plugins
|
;statssounds.amxx ; precache plugin for stats plugins
|
||||||
;stats_logging.amxx ; weapons stats logging (TFC Module required!)
|
;stats_logging.amxx ; weapons stats logging (TFC Module required!)
|
||||||
|
|
||||||
|
; Enable to use AMX Mod plugins
|
||||||
|
amxmod_compat.amxx ; AMX Mod backwards compatibility layer
|
||||||
|
|
||||||
; Custom - Add 3rd party plugins here
|
; Custom - Add 3rd party plugins here
|
||||||
|
|
|
@ -38,5 +38,7 @@ statscfg.amxx ; allows to manage stats plugins via menu and commands
|
||||||
;statssounds.amxx ; precache plugin for stats plugins
|
;statssounds.amxx ; precache plugin for stats plugins
|
||||||
;stats_logging.amxx ; weapons stats logging (TS Module required!)
|
;stats_logging.amxx ; weapons stats logging (TS Module required!)
|
||||||
|
|
||||||
|
; Enable to use AMX Mod plugins
|
||||||
|
amxmod_compat.amxx ; AMX Mod backwards compatibility layer
|
||||||
|
|
||||||
; Custom - Add 3rd party plugins here
|
; Custom - Add 3rd party plugins here
|
||||||
|
|
Binary file not shown.
|
@ -84,6 +84,10 @@ private void AddPlugins()
|
||||||
admin_sql.options = "USING_SQL=1 -oadmin_sql.amx";
|
admin_sql.options = "USING_SQL=1 -oadmin_sql.amx";
|
||||||
m_Plugins.Add(admin_sql);
|
m_Plugins.Add(admin_sql);
|
||||||
|
|
||||||
|
Plugin bcompat = new Plugin("amxmod_compat");
|
||||||
|
bcompat.source = "amxmod_compat/amxmod_compat.sma";
|
||||||
|
m_Plugins.Add(bcompat);
|
||||||
|
|
||||||
AddPlugin("adminchat");
|
AddPlugin("adminchat");
|
||||||
AddPlugin("admincmd");
|
AddPlugin("admincmd");
|
||||||
AddPlugin("adminhelp");
|
AddPlugin("adminhelp");
|
||||||
|
|
Loading…
Reference in New Issue
Block a user