Amx.cfg设定教学//AMX-MOD的简易设定篇
//主要设定都在Admin.cfg里面以下是原文内容及概要翻译
// AMX configuration file
// File location: $moddir/addons/amx
// To use with admin.amx and admincmd.amx plugins
// amx_admin < name|ip|wonid > < password > < access > <flags >
//这行为设定管理员的名字或是wonid或是IP还有权限...等,下面会有介绍如何设定
// Flags:
// a - disconnect player on invalid password如果管理员密码登入错误就会被踢
// b - clan tag队伍标签!?
// c - this is authid/wonid这是选择使用wonid来认证登入
// d - this is ip这是选择使用ip来认证登入
// e - password is not checked (only name/ip/wonid needed)密码不会被检查,只有名字或ip或wonid需要检查
// Access:权限,各个指令权限分级从a到z
// a - immunity (can't be kicked/baned/slayed/slaped and affected by other commmands)不会被kicked/baned/slayed/slaped但是会受其他指令影响
// b - reservation (can join on reserved slots)可以使用保留位登入
// c - amx_kick command拥有踢人权限
// d - amx_ban and amx_unban commands拥有ban权限
// e - amx_slay and amx_slap commands拥有slap&slay权限
// f - amx_map command拥有换地图权限
// g - amx_cvar command (not all cvars will be available)拥有cvar权限
// h - amx_cfg command拥有载入CFG权限
// 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)拥有rcon权限
// 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拥有amx_menu选单权限
// z - user一般使用者
// Example of admin account configuration
// amx_admin "Player" "my_password" "abcdefghijklmnopqrstu" "a"
//这行就是设定管理员权限的一行
//第一个player就是上面有提到可以用玩家名字或是wonid或是ip来设定
//第二个my_password就是自己的密码
//第三个就是权限啦
//第四个就是登入时你要用什么方式认证
//ex-
//范例amx_admin "PEN-PEN" "csdemos" "abcdefghijklmnopqrstu" "a"
//范例amx_admin "192.168.0.1" "ip" "abcdefghijklmnopqrstu" "d"
//这样就是设定了两个adm在里面,一个是名字登入,另一个是指定ip登入
// Default access预设权限,就是一般没权限的玩家可拥有的权限
amx_default_access "j"
//我设定预设权限为j代表所有玩家可以使用投票的权限
// Name of setinfo which should store the password on client
// f.e. with current settings admin should have line in his config: setinfo _pw hello
//amx_password_field "_pw" 设定setinfo的密码为_pw
// Mode of logging to the server
// 2 - kick all players not on list设定只能让ADM进入
// 1 - normal mode正常模式
// 0 - disable logging, players won't be checked (and access won't be set)取消ADM登入
amx_mode 1
// Show admins activity显示出玩家或ADM是否使用指令
// 0 - disabled取消
// 1 - show without admin nick显示出指令但不显示出哪个ADM
// 2 - show with nick显示出指令跟指令使用者
amx_show_activity 2
// Some info displaying and frequency of scrolling message in sec.这行就是跑在画面底下的跑马灯
//amx_scrollmsg "Welcome to %hostname% -- This server Use SuperHero mod AMX -- Visit
http://X-BoxCS.24..." 300
// Frequency of information messages in sec.各个跑马灯的出来的间隔时间预设180秒
//amx_freq_imessage 900
// Plain information messages显示在萤幕中间的跑马灯,后面的数值是显示的颜色
//amx_imessage "Welcome to %hostname%" "255100000"
//amx_imessage "This server Use SuperHero AMX\nVisit
http://X-BoxCS.24..." "000100255"
// Set chat-flood protection防止洗画面的的时间,预设在0.75秒内连续发言两次就踢!
amx_flood_time 0.75
// Kicking rules to keep reservered slots free保留位的设定
// 0 - don't kick anyone and keep reserved slots only for players with reservation不要踢走任何人,给有保留位的人有保留位的位置
// 1 - kick by shortest playing time踢走玩时间很少的人,也就是说谁在里面时间玩的短,有adm进来时就会被踢走
// 2 - kick by worst ping踢走ping差的人,也就是说谁在里面ping最高,有adm进来时就会被踢走
// 3 - don't kick anyone and put on remaining reserved slots only players with reservation不踢走任何人,有权限的人还是只能用一般位
amx_reservation 0
// Amount for reserved slots设定要有几个保留位
amx_reserved_slots 2
//设定有两个保留位
// Time remaining displaying时间倒数显示设定
// a - display text显示文字
// b - use voice使用语音
// c - don't add "remaining" (only in voice) 使用语音时不用说remanining
// d - don't add "hours/minutes/seconds" (only in voice)使用语音时不用说"时分秒"
// e - show/speak if current time is less than this set 如果现行的时间少于这个设定就显示时间及语音
//amx_time_display "a 1200" "a 600" "a 300" "a 180" "a 60" "a 11"
//上面的数字代表秒数,像bcde 11就是地图时间快结束如的前十秒倒数
// Minimum delay in seconds between two voting sessions两次同票时间的间隔
amx_vote_delay 30
//预设90秒间可以再次投票
// How long voting session go on同票进行的时间
amx_vote_time 10
//预设10秒内完成所有投票及统计
// Display who votes for what显示玩家投什么票
amx_vote_answers 1
//1就是显示,0则不显示
// 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
//其他通过率预设超过二成就通过
// Stats settings
// For stats settings use amx_statscfg admin command
// Stats 设定
// a - 死时显示对手打伤你的统计数据
// b - 死时显示你打伤对手的统计数据
// c - 死时显示跟凶手的对战数据及凶手剩余生命护甲
// d - 换地图前显示自己的统计数据
// e - 换地图前显示 TOP 15
// f - 死时显示凶手剩余生命护甲
//amx_avlist_mode abcdf
// Announce "say thetime" and "say timeleft" with voice以 "say thetime" "say timeleft" 查询时间时拨放时间语音
amx_time_voice 0
// Max. time to which map can be extended设定几秒前出现决定下张地图的投票
amx_extendmap_max 120
// Step for each extending下张地图可投票期间的时间
amx_extendmap_step 5