amx.cfg の設定

     基本的に 0=無効、1=有効です。

※重要※
下の設定記述をコピーして実際の設定ファイルに貼り付ける場合は
説明部分(青字)は使用しないでください。トラブルの原因になります。


  戻る  


// AMX Configuration File
echo Executing AMX Configuration File
この設定ファイルを読み込んだときに、サーバーのコンソール画面に
"Executing AMX Configuration File"と表示する。


// Default access for all non admin players (see users.ini for access details) 
amx_default_access "j"
amx_adminで特定していないプレイヤーがJOINしたときの権限指定。
(上の例ではレベル「j」なので、amx_voteやamx_votemapのみ使用可能。)

// Name of setinfo which should store a password on a client
// (Example: setinfo _pw "password")
amx_password_field "_pw"
管理者権限でJOINするために、クライアント側のconfig.cfgに管理者パスワードを記述するときの変数指定。

(上記例では、仮に hage という管理者がクライアントマシンからJOINするとして、サーバーのadmin.cfg内に
amx_admin "hage" "testpass" "abcdefghijklmnopqrstu" "a"
と記述し、クライアント側のconfig.cfgに
setinfo "_pw" "testpass"
と記述すれば、hage はAdmin権限でJOINすることが可能になります。



// 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 0
Admin権限をもつ管理者がサーバーにアクセスしているかどうかを表示する
(未確認)

// Frequency in seconds and text of scrolling message
amx_scrollmsg "Welcome to %hostname% -- This server is using AMX -- Visit http://amxmod.net" 300
スクロールメッセージ(画面下部に流れるメッセージ)の内容と表示間隔(秒)

// 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 120
インフォメーションメッセージの表示間隔(秒)

// Set in seconds how fast players can chat (chat-flood protection)
amx_flood_time 0.75

// Reservered slots working mode (for more details see comments in a plugin source)
// 0 - disables checking for slots usage
// 1 - kick by shortest playing time when server goes full
// 2 - kick by worst ping when server goes full
// 3 - kick player without reservation when enters to a reserved slot
amx_reservation 3

// Amount of reserved slots
amx_reserved_slots 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"
残り時間のアナウンス設定
     a - テキスト表示
     b - 音声でアナウンス
     c - 「remaining」という言葉を付け加えない(音声アナウンス設定時のみ機能)
     d - 「hours/minutes/seconds」という言葉を付け加えない(音声アナウンス設定時のみ機能)
     e - 残り時間がセットした時間を過ぎても、表示・アナウンスを続ける

// Announce "say thetime" and "say timeleft" with voice
amx_time_voice 1
thetimeコマンドとtimeleftコマンドを使った時に音声でもアナウンスする

// Minimum delay in seconds between two voting sessions
amx_vote_delay 10
1度行われたvoteコマンドから次のvoteコマンドが使用可能になるまでの最小時間(秒)

// How long voting session goes on
amx_vote_time 10
voteの投票時間(分?)(未確認)

// 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.60
amx_vote_ratio 0.02
voteが成功するための得票率

// Max. time to which map can be extended
amx_extendmap_max 90
マップ時間延長の最大時間
(※mapchooser.amxを使用時のみ)

// Step for each extending
amx_extendmap_step 15

  戻る