Initial revision
This commit is contained in:
70
configs/amx.cfg
Executable file
70
configs/amx.cfg
Executable file
@ -0,0 +1,70 @@
|
||||
// AMX Configuration File
|
||||
echo Executing AMX Configuration File
|
||||
|
||||
// Default access for all non admin players (see users.ini for access details)
|
||||
amx_default_access ""
|
||||
|
||||
// Name of setinfo which should store a password on a client
|
||||
// (Example: setinfo _pw "password")
|
||||
amx_password_field "_pw"
|
||||
|
||||
// Mode of logging to a server
|
||||
// 0 - disable logging, players won't be checked (and access won't be set)
|
||||
// 1 - normal mode which obey flags set in accounts
|
||||
// 2 - kick all players not on list
|
||||
amx_mode 1
|
||||
|
||||
// Show admins activity
|
||||
// 0 - disabled
|
||||
// 1 - show without admin name
|
||||
// 2 - show with name
|
||||
amx_show_activity 2
|
||||
|
||||
// Frequency in seconds and text of scrolling message
|
||||
amx_scrollmsg "Welcome to %hostname% -- This server is using AMX" 600
|
||||
|
||||
// Center typed colored messages (last parameter is a color in RRRGGGBBB format)
|
||||
amx_imessage "Welcome to %hostname%" "000255100"
|
||||
amx_imessage "This server is using AMX\nVisit http://amxmod.net" "000100255"
|
||||
|
||||
// Frequency in seconds of colored messages
|
||||
amx_freq_imessage 180
|
||||
|
||||
// Set in seconds how fast players can chat (chat-flood protection)
|
||||
amx_flood_time 0.75
|
||||
|
||||
// Amount of reserved slots (for more details see comments in a plugin source)
|
||||
amx_reservation 2
|
||||
|
||||
// Displaying of time remaining
|
||||
// a - display white text on bottom
|
||||
// b - use voice
|
||||
// c - don't add "remaining" (only in voice)
|
||||
// d - don't add "hours/minutes/seconds" (only in voice)
|
||||
// e - show/speak if current time is less than this set in parameter
|
||||
amx_time_display "ab 1200" "ab 600" "ab 300" "ab 180" "ab 60" "bcde 11"
|
||||
|
||||
// Announce "say thetime" and "say timeleft" with voice
|
||||
amx_time_voice 1
|
||||
|
||||
// Minimum delay in seconds between two voting sessions
|
||||
amx_vote_delay 10
|
||||
|
||||
// How long voting session goes on
|
||||
amx_vote_time 10
|
||||
|
||||
// Display who votes for what option
|
||||
amx_vote_answers 1
|
||||
|
||||
// Some ratios for voting success
|
||||
amx_votekick_ratio 0.40
|
||||
amx_voteban_ratio 0.40
|
||||
amx_votemap_ratio 0.40
|
||||
amx_vote_ratio 0.02
|
||||
|
||||
// Max. time to which map can be extended
|
||||
amx_extendmap_max 90
|
||||
|
||||
// Step for each extending
|
||||
amx_extendmap_step 15
|
||||
|
18
configs/clcmds.ini
Executable file
18
configs/clcmds.ini
Executable file
@ -0,0 +1,18 @@
|
||||
; Client commands configuration file
|
||||
; File location: $moddir/addons/amx/clcmds.ini
|
||||
; To use with Players Menu plugin
|
||||
|
||||
; NOTE: By default in all settings the access level is set to "u".
|
||||
; However you can change that, to limit the access to some settings.
|
||||
|
||||
; Client Commands Menu:
|
||||
; < description > < command > < flags > < access level >
|
||||
; "a" - execute from server console
|
||||
; "b" - execute from admin console
|
||||
; "c" - execute on selected player
|
||||
; "d" - back to menu when executed
|
||||
|
||||
"Kick player" "amx_kick #%userid%" "b" "u"
|
||||
"Slay player" "amx_slay #%userid%" "bd" "u"
|
||||
"Slap with 1 dmg." "amx_slap #%userid% 1" "b" "u"
|
||||
"Ban on 5 minutes" "amx_banip 5 #%userid%" "b" "u"
|
17
configs/cmds.ini
Executable file
17
configs/cmds.ini
Executable file
@ -0,0 +1,17 @@
|
||||
; Menu configuration file
|
||||
; File location: $moddir/addons/amx/cmds.ini
|
||||
; To use with Commands Menu plugin
|
||||
|
||||
; NOTE: By default in all settings the access level is set to "u".
|
||||
; However you can change that, to limit the access to some settings.
|
||||
|
||||
; Commands Menu:
|
||||
; < description > < command > < flags > < access level >
|
||||
; "a" - execute from server console
|
||||
; "b" - execute from admin console
|
||||
; "c" - execute on all clients
|
||||
; "d" - back to menu when executed
|
||||
|
||||
"Pause" "amx_pause" "ad" "u"
|
||||
" " "-" "" "u"
|
||||
"Restart Round" "sv_restartround 1" "a" "u"
|
22
configs/configs.ini
Executable file
22
configs/configs.ini
Executable file
@ -0,0 +1,22 @@
|
||||
; Menu configuration file
|
||||
; File location: $moddir/addons/amx/configs.ini
|
||||
; To use with Commands Menu plugin
|
||||
|
||||
; NOTE: By default in all settings the access level is set to "u".
|
||||
; However you can change that, to limit the access to some settings.
|
||||
|
||||
; Commands Menu:
|
||||
; < description > < command > < flags > < access level >
|
||||
; "a" - execute from server console
|
||||
; "b" - execute from admin console
|
||||
; "c" - execute on all clients
|
||||
; "d" - back to menu when executed
|
||||
|
||||
"PUBLIC Settings" "servercfgfile server.cfg;exec server.cfg" "a" "u"
|
||||
"Clanbase" "exec clanbase.cfg;servercfgfile \'\'" "a" "u"
|
||||
"Clanbase Charges Only" "exec clanbase_co.cfg;servercfgfile \'\'" "a" "u"
|
||||
"Official CAL Match" "exec cal.cfg;servercfgfile \'\'" "a" "u"
|
||||
"ProvingGrounds Server Config" "exec leagues/pg.cfg;servercfgfile \'\'" "a" "u"
|
||||
"OGL CS Server Config" "exec ogl.cfg;servercfgfile \'\'" "a" "u"
|
||||
"OGL CS FF Server Config" "exec ogl_ff.cfg;servercfgfile \'\'" "a" "u"
|
||||
"OGL CS Advanced Server Config" "exec ogl_adv.cfg;servercfgfile \'\'" "a" "u"
|
1
configs/conmotd.txt
Executable file
1
configs/conmotd.txt
Executable file
@ -0,0 +1 @@
|
||||
For newest AMX Mod and many plugins visit http://amxmod.net
|
7
configs/core.ini
Executable file
7
configs/core.ini
Executable file
@ -0,0 +1,7 @@
|
||||
; Configuration file for AMX
|
||||
amx_logdir addons/amx/logs
|
||||
amx_modules addons/amx/modules.ini
|
||||
amx_plugins addons/amx/plugins/plugins.ini
|
||||
amx_vault addons/amx/vault.ini
|
||||
csstats_score addons/amx/csstats.amx
|
||||
csstats addons/amx/csstats.dat
|
23
configs/cvars.ini
Executable file
23
configs/cvars.ini
Executable file
@ -0,0 +1,23 @@
|
||||
; Menu configuration file
|
||||
; File location: $moddir/addons/amx/cvars.ini
|
||||
; To use with Commands Menu plugin
|
||||
|
||||
; Cvars Menu:
|
||||
; < cvar > < values > ... < access level >
|
||||
|
||||
"mp_timelimit" "0" "30" "45" "u"
|
||||
"mp_friendlyfire" "0" "1" "u"
|
||||
"mp_autoteambalance" "0" "1" "2" "u"
|
||||
"sv_password" "" roxor "clanwar" "u"
|
||||
"mp_limitteams" "0" "1" "2" "u"
|
||||
"mp_freezetime" 0 "6" "u"
|
||||
"mp_buytime" "1" "0.5" "u"
|
||||
"mp_startmoney" "800" "1800" "3600" "u"
|
||||
"mp_c4timer" "35" "45" "15" "u"
|
||||
"mp_forcechasecam" "0" "1" "2" "u"
|
||||
"pausable" 0 1 "u"
|
||||
"sv_minrate" "2000" "3000" "u"
|
||||
"sv_maxrate" "7000" "6500" "u"
|
||||
"allow_spectators" "0" "1" "u"
|
||||
"sv_voiceenable" "0" "1" "u"
|
||||
"mp_logmessages" "0" "1" "u"
|
30
configs/maps.ini
Executable file
30
configs/maps.ini
Executable file
@ -0,0 +1,30 @@
|
||||
; Maps configuration file
|
||||
; File location: $moddir/addons/amx/maps.ini
|
||||
; To use with Maps Menu plugin
|
||||
|
||||
|
||||
as_oilrig "OilRig - Assassination"
|
||||
as_tundra "Tundra - Assassination"
|
||||
de_aztec "Aztec - Bomb/Defuse"
|
||||
de_cbble "Cobble - Bomb/Defuse"
|
||||
de_chateau "Chateau - Bomb/Defuse"
|
||||
de_dust "Dust - Bomb/Defuse"
|
||||
de_dust2 "Dust II - Bomb/Defuse"
|
||||
de_inferno "Inferno - Bomb/Defuse"
|
||||
de_nuke "Nuke - Bomb/Defuse"
|
||||
de_prodigy "Prodigy - Bomb/Defuse"
|
||||
de_storm "Storm - Bomb/Defuse"
|
||||
de_survivor "Survivor - Bomb/Defuse"
|
||||
de_train "Trainyard - Bomb/Defuse"
|
||||
de_torn "Torn - Bomb/Defuse"
|
||||
de_vegas "Vegas - Bomb/Defuse"
|
||||
de_vertigo "Vertigo - Bomb/Defuse"
|
||||
cs_747 "747 Hijack - Hostage Rescue"
|
||||
cs_assault "Assault - Hostage Rescue"
|
||||
cs_backalley "Alleyway - Hostage Rescue"
|
||||
cs_estate "Zaphod's Estate - Hostage Rescue"
|
||||
cs_havana "Havana - Hostage Rescue"
|
||||
cs_italy "Italy - Hostage Rescue"
|
||||
cs_militia "Militia - Hostage Rescue"
|
||||
cs_office "The Office Complex - Hostage Rescue"
|
||||
cs_siege "Canyon Siege - Hostage Rescue"
|
14
configs/modules.ini
Executable file
14
configs/modules.ini
Executable file
@ -0,0 +1,14 @@
|
||||
; AMX Modules
|
||||
; You can specify both linux & win32 modules here
|
||||
|
||||
; CS Stats
|
||||
addons/amx/dlls/csstats_mm.dll
|
||||
addons/amx/dlls/csstats_mm_i386.so
|
||||
|
||||
; More functions for modifications in HL
|
||||
addons/amx/dlls/fun_mm.dll
|
||||
addons/amx/dlls/fun_mm_i386.so
|
||||
|
||||
; MySQL access
|
||||
;addons/amx/dlls/mysql.dll
|
||||
;addons/amx/dlls/mysql_i386.so
|
10
configs/mysql.cfg
Executable file
10
configs/mysql.cfg
Executable file
@ -0,0 +1,10 @@
|
||||
// MySQL access configuration file
|
||||
// File location: $moddir/addons/amx
|
||||
|
||||
// *NOTE* Linux users may encounter problems if they specify "localhost" instead of "127.0.0.1"
|
||||
// We recommend using your server IP address instead of its name
|
||||
|
||||
amx_mysql_host "127.0.0.1"
|
||||
amx_mysql_user "root"
|
||||
amx_mysql_pass ""
|
||||
amx_mysql_db "amx"
|
26
configs/plugins.ini
Executable file
26
configs/plugins.ini
Executable file
@ -0,0 +1,26 @@
|
||||
; AMX Mod plugins
|
||||
|
||||
admin.amx ; admin base (required for any admin-related)
|
||||
;admin_mysql.amx ; admin base - MySQL version (comment admin.amx)
|
||||
admincmd.amx ; basic admin console commands
|
||||
adminhelp.amx ; help command for admin console commands
|
||||
adminslots.amx ; slot reservation
|
||||
menufront.amx ; front-end for admin menus
|
||||
cmdmenu.amx ; command menu (speech, settings)
|
||||
plmenu.amx ; players menu (kick, ban, client cmds.)
|
||||
restmenu.amx ; restrict weapons menu
|
||||
mapsmenu.amx ; maps menu (vote, changelevel)
|
||||
antiflood.amx ; prevent clients from chat-flooding the server
|
||||
adminchat.amx ; console chat commands
|
||||
adminvote.amx ; vote commands
|
||||
nextmap.amx ; displays next map in mapcycle
|
||||
timeleft.amx ; displays time left on map
|
||||
mapchooser.amx ; allows to vote for next map
|
||||
scrollmsg.amx ; displays a scrolling message
|
||||
imessage.amx ; displays information messages
|
||||
pausecfg.amx ; allows to pause and unpause some plugins
|
||||
;telemenu.amx ; teleport menu (Fun Module required!)
|
||||
stats.amx ; stats on death or round end (CSStats Module required!)
|
||||
stats_logging.amx ; weapons stats logging (CSStats Module required!)
|
||||
miscstats.amx ; bunch of events announcement for Counter-Strike
|
||||
statscfg.amx ; allows to manage stats plugins via menu and commands
|
35
configs/speech.ini
Executable file
35
configs/speech.ini
Executable file
@ -0,0 +1,35 @@
|
||||
; Menu configuration file
|
||||
; File location: $moddir/addons/amx/speech.ini
|
||||
; To use with Commands Menu plugin
|
||||
|
||||
; NOTE: By default in all settings the access level is set to "u".
|
||||
; However you can change that, to limit the access to some settings.
|
||||
|
||||
; Commands Menu:
|
||||
; < description > < command > < flags > < access level >
|
||||
; "a" - execute from server console
|
||||
; "b" - execute from admin console
|
||||
; "c" - execute on all clients
|
||||
; "d" - back to menu when executed
|
||||
|
||||
"Hello!" "spk \'vox/hello\'" "cd" "u"
|
||||
"Don't think so" "spk \'barney/dontguess\'" "cd" "u"
|
||||
"Don't ask me" "spk \'barney/dontaskme\'" "cd" "u"
|
||||
"Hey! Stop that!" "spk \'barney/donthurtem\'" "cd" "u"
|
||||
"Yup" "spk \'barney/yup\'" "cd" "u"
|
||||
"Nope" "spk \'barney/nope\'" "cd" "u"
|
||||
"Maybe" "spk \'barney/maybe\'" "cd" "u"
|
||||
"Seeya" "spk \'barney/seeya\'" "cd" "u"
|
||||
"Man that sounded bad" "spk \'barney/soundsbad\'" "cd" "u"
|
||||
"Hello and die" "spk \'vox/hello and die\'" "cd" "u"
|
||||
"Move!" "spk \'hgrunt/move! _comma yessir!\'" "cd" "u"
|
||||
"You will definitely pay!" "spk \'hgrunt/c2a2_hg_chat5a\'" "cd" "u"
|
||||
"Laughter" "spk \'hgrunt/c2a3_hg_laugh\'" "cd" "u"
|
||||
"Silence!" "spk \'hgrunt/silence!\'" "cd" "u"
|
||||
"You talk too much" "spk \'barney/youtalkmuch\'" "cd" "u"
|
||||
"You thinkin?" "spk \'barney/thinking\'" "cd" "u"
|
||||
"Open fire Gordon!" "spk \'barney/openfire\'" "cd" "u"
|
||||
"Couldnt make a bigger mess" "spk \'barney/bigmess\'" "cd" "u"
|
||||
"I have a Bad feeling" "spk \'barney/badfeeling\'" "cd" "u"
|
||||
"Yes sir!" "spk \'hgrunt/yessir!\'" "cd" "u"
|
||||
"No sir" "spk \'barney/nosir\'" "cd" "u"
|
42
configs/users.ini
Executable file
42
configs/users.ini
Executable file
@ -0,0 +1,42 @@
|
||||
; Line starting with ; is a comment
|
||||
|
||||
; Access flags:
|
||||
; a - immunity (can't be kicked/baned/slayed/slaped and affected by other commmands)
|
||||
; b - reservation (can join on reserved slots)
|
||||
; c - amx_kick command
|
||||
; d - amx_ban and amx_unban commands
|
||||
; e - amx_slay and amx_slap commands
|
||||
; f - amx_map command
|
||||
; g - amx_cvar command (not all cvars will be available)
|
||||
; h - amx_cfg command
|
||||
; i - amx_chat and other chat commands
|
||||
; j - amx_vote and other vote commands
|
||||
; k - access to sv_password cvar (by amx_cvar command)
|
||||
; l - access to amx_rcon command and rcon_password cvar (by amx_cvar command)
|
||||
; m - custom level A (for additional plugins)
|
||||
; n - custom level B
|
||||
; o - custom level C
|
||||
; p - custom level D
|
||||
; q - custom level E
|
||||
; r - custom level F
|
||||
; s - custom level G
|
||||
; t - custom level H
|
||||
; u - menu access
|
||||
; z - user
|
||||
|
||||
; Account flags:
|
||||
; a - disconnect player on invalid password
|
||||
; b - clan tag
|
||||
; c - this is steamid
|
||||
; d - this is ip
|
||||
; e - password is not checked (only name/ip/steamid needed)
|
||||
|
||||
; Format of admin account:
|
||||
; <name|ip|steamid> <password> <access flags> <account flags>
|
||||
|
||||
; Examples of admin accounts:
|
||||
; "123.43.43.53" "" "abcdefghijklmnopqrstu" "de"
|
||||
; "STEAM_0:0:14332" "my_password" "abcdefgnstu" "c"
|
||||
; "My Name" "my_password" "abcdefghijklmnopqrstu" "a"
|
||||
|
||||
"loopback" "" "abcdefghijklmnopqrstu" "de"
|
Reference in New Issue
Block a user