原因: 想某特定地图才开启的插件
例子 : 只想在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就可以了。