原因: 想某特定地圖才開啟的插件
例子 : 只想在de_dust2 & de_dust ...
~
開啟 sentrygun.amxx
~
關閃 rope.amxx
~
限制不能購買沙漠之鷹
1) 在amxx.cfg 加入 amx_pausecfg pause sentrygun.amxx
解釋: 因為只想 某特定地圖才開啟 所以預設關閉這個插件
2) 在cstrike\addons\amxmodx\configs\maps,沒有maps資料夾就自創 建立一個空白文件 副檔名為cfg
文件名字 必須為該地圖名稱 (如 de_dust2.cfg & de_dust.cfg)
3) 編輯 de_dust2.cfg
4a) 輸入所需要在這地圖
開啟的插件
amx_pausecfg enable sentrygun.amxx
再該地圖開啟插件的指令 插件名稱
4b) 輸入所需要在這地圖
關閉的插件
amx_pausecfg pause rope.amxx關閉插件的指令 插件名稱
5) 如需要 限制武器 (如沙漠之鷹) 請輸入
amx_restrict on deagle
限制武器指令 槍名稱
其他武器如下
武器名->限制名
H&K USP .45 Tactical -> usp
Glock18 Select Fire -> glock
Desert Eagle .50AE -> deagle
SIG P228 -> p228
Dual Beretta 96G Elite -> elites
FN Five-Seven -> fn57
Benelli M3 Super90 (pump shotty) -> m3
Benelli XM1014 (auto shotty) -> xm1014
H&K MP5-Navy -> mp5
Steyr Tactical Machine Pistol -> tmp
FN P90 -> p90
Ingram MAC-10 -> mac10
H&K UMP45 -> ump45
AK-47 -> ak47
Gali -> galil
Famas -> famas
Sig SG-552 Commando -> sg552
Colt M4A1 Carbine -> m4a1
Steyr Aug -> aug
Steyr Scout -> scout
AI Arctic Warfare/Magnum -> awp
H&K G3/SG-1 Sniper Rifle -> g3sg1
Sig SG-550 Sniper -> sg550
FN M249 Para (machine gun) -> m249
Kevlar Vest -> vest
Kevlar Vest & Helmet -> vesthelm
Flashbang -> flash
HE Grenade -> hegren
Smoke Grenade -> sgren
Defuse Kit -> defuser
NightVision Goggles -> nvgs
Tactical Shield -> shield
Primary weapon ammo -> primammo
Secondary weapon ammo -> secammo方法二:通過OP rcon命令實行封禁/解除。在控制台輸入amx_restrict命令。你將得到如下提示:
Usage: amx_restrict <command> [value]
Commands:
on - set restriction on whole equipment 〈禁止所有武器〉
off - remove restriction from whole equipment 〈開啟所有武器〉
on <value> [...] - set specified restriction 〈設置禁止〉
off <value> [...] - remove specified restriction 〈解除禁止〉
list - display list of available equipment and weapons 〈顯示可用的武器以及裝備〉
save - save restriction 〈保存武器設置〉
load [file] - load restriction [from a file] 〈加載服務器武器設置〉
Available values to restrict are:
ammo, equip, pistol, shotgun, sub, rifle, machine
Type 'amx_restrict list' for more specified values
Basically, your commands are:<Written by KinGtIon>
amx_restrict on <weapon name or catagory> <武器名字或全名> on 代表禁止
amx_restrict off <weapon name or catagory> off 代表開啟使用
amx_restrict list 武器列表
amx_restrict save 武器禁止之後保存文件<任何時候都有效,不保存將只對當前地圖有效>
amx_restrict load <weaponrest.cfg> 加載服務器以前的禁止設置
具體使用方法:
先打開武器列表:rcon amx_reatrict list 武器列表第一頁<手槍系列>;rcon amx_reatrict list11武器列表第二頁<短槍系列>; rcon amx_reatrict list21 武器列表第三頁<長槍系列>; rcon amx_reatrict list31武器列表第四頁<盾牌和子彈>。在裡面找出相應的武器名稱。
禁槍命令:如禁匪徒連狙:rcon amx_restrict on g3gs1;警察連狙:rcon amx_restrict on sg550;盾牌:rcon amx_restrict on shield。
解除封禁:用off代替on就可以了。