Initial import
This commit is contained in:
parent
739b2b8e80
commit
65a5e34d38
72
configs/ns/amxx.cfg
Executable file
72
configs/ns/amxx.cfg
Executable file
|
@ -0,0 +1,72 @@
|
|||
// AMX Configuration File
|
||||
echo Executing AMX Mod X Configuration File
|
||||
|
||||
// Default access for all non admin players (see users.ini for access details)
|
||||
amx_default_access "z"
|
||||
|
||||
// Name of setinfo which should store a password on a client (you should change this)
|
||||
// (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 Mod X" 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 Mod X\nVisit http://www.amxmodx.org" "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 0
|
||||
|
||||
// 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 180" "ab 120" "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
|
||||
|
||||
// Ignore the minimum and maximum settings for maps in the mapcycle
|
||||
amx_mapnum_ignore 0
|
18
configs/ns/clcmds.ini
Executable file
18
configs/ns/clcmds.ini
Executable file
|
@ -0,0 +1,18 @@
|
|||
; Menu configuration file
|
||||
; File location: $moddir/addons/amxx/configs/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" "bd" "u"
|
||||
"Ban for 5 minutes" "amx_ban #%userid% id 5" "b" "u"
|
||||
"Autoassign" "autoassign" "c" "u"
|
16
configs/ns/cmds.ini
Executable file
16
configs/ns/cmds.ini
Executable file
|
@ -0,0 +1,16 @@
|
|||
; Menu configuration file
|
||||
; File location: $moddir/addons/amxx/configs/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"
|
||||
"Autoassign All" "autoassign" "c" "u"
|
13
configs/ns/cvars.ini
Executable file
13
configs/ns/cvars.ini
Executable file
|
@ -0,0 +1,13 @@
|
|||
; Menu configuration file
|
||||
; File location: $moddir/addons/amxx/configs/cvars.ini
|
||||
; To use with Commands Menu plugin
|
||||
|
||||
; Cvars Menu:
|
||||
; < cvar > < values > ... < access level >
|
||||
|
||||
"mp_timelimit" "0" "30" "45" "u"
|
||||
"sv_password" "" "mypw" "clanwar" "u"
|
||||
"pausable" "0" "1" "u"
|
||||
"sv_voiceenable" "0" "1" "u"
|
||||
"mp_chattime" "0" "1" "3" "u"
|
||||
"mp_logmessages" "0" "1" "u"
|
27
configs/ns/maps.ini
Executable file
27
configs/ns/maps.ini
Executable file
|
@ -0,0 +1,27 @@
|
|||
; Maps configuration file
|
||||
; File location: $moddir/addons/amxx/configs/maps.ini
|
||||
; To use with Maps Menu plugin
|
||||
|
||||
; Add in your mod's maps here
|
||||
|
||||
co_angst
|
||||
ns_caged
|
||||
ns_hera
|
||||
ns_metal
|
||||
ns_lost
|
||||
ns_nothing
|
||||
co_faceoff
|
||||
ns_mineshaft
|
||||
co_daimos
|
||||
ns_origin
|
||||
co_kestrel
|
||||
ns_tanith
|
||||
co_rebirth
|
||||
ns_nancy
|
||||
ns_veil
|
||||
co_core
|
||||
ns_eclipse
|
||||
co_pulse
|
||||
ns_ayumi
|
||||
ns_agora
|
||||
co_ulysses
|
51
configs/ns/modules.ini
Executable file
51
configs/ns/modules.ini
Executable file
|
@ -0,0 +1,51 @@
|
|||
; AMX Mod X Modules
|
||||
; You can specify both linux & win32 modules here
|
||||
|
||||
; ------------------------------
|
||||
; Fun - provides extra functions
|
||||
; ------------------------------
|
||||
fun_amxx_i386.so
|
||||
fun_amxx.dll
|
||||
|
||||
; ----------------------------------------------------
|
||||
; Engine - provides engine functions core to Half-Life
|
||||
; ----------------------------------------------------
|
||||
;engine_amxx_i386.so
|
||||
;engine_amxx.dll
|
||||
|
||||
; -------------------------------------------
|
||||
; Database Access - only enable one of these
|
||||
; -------------------------------------------
|
||||
; MySQL
|
||||
;mysql_amxx_i386.so
|
||||
;mysql_amxx.dll
|
||||
; PostgreSQL
|
||||
;pgsql_amxx_i386.so
|
||||
;pgsql_amxx.dll
|
||||
; Microsoft SQL
|
||||
;mssql_amxx_i386.so
|
||||
;mssql_amxx.dll
|
||||
|
||||
; ---------------------------------------------
|
||||
; GeoIP - determines the country of ip adresses
|
||||
; ---------------------------------------------
|
||||
;geoip_amxx_i386.so
|
||||
;geoip_amxx.dll
|
||||
|
||||
; ------------------------------------
|
||||
; Array - advanced arrays in scripting
|
||||
; ------------------------------------
|
||||
;array_amxx_i386.so
|
||||
;array_amxx.dll
|
||||
|
||||
; --------------------------------
|
||||
; Sockets - network socket support
|
||||
; --------------------------------
|
||||
;sockets_amxx_i386.so
|
||||
;sockets_amxx.dll
|
||||
|
||||
; -----------------
|
||||
; Natural Selection
|
||||
; -----------------
|
||||
;ns_amxx_i386.so
|
||||
;ns_amxx.dll
|
38
configs/ns/speech.ini
Executable file
38
configs/ns/speech.ini
Executable file
|
@ -0,0 +1,38 @@
|
|||
; Menu configuration file
|
||||
; File location: $moddir/addons/amxx/configs/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"
|
||||
"My Hive" "spk \'hud/alien_myhive\'" "cd" "u"
|
||||
"Need better players" "spk \'hud/alien_needbetter\'" "cd" "u"
|
||||
"I see dead people" "spk \'hud/alien_seedead\'" "cd" "u"
|
||||
"Now, we donce!" "spk \'hud/alien_now\'" "cd" "u"
|
Loading…
Reference in New Issue
Block a user