|
发表于 2005-9-11 09:24:07
|
显示全部楼层
来自 日本
回复: 【下载测试】反作弊插件 Cheaterlog v1.4 附使用方法 [2005-9-8]
Post by BoeZombie
HLGuard、Statsme两者选其一即可。Cheaterlog是调用HLG或Statsme的命令。
不推荐StatsMe,因为StatsMe和其他插件存在冲突,并且Statsme早就停止开发了。
其实Cheaterlog也早就停止开发了,这个‘最新’的1.4版是2003年9月推出的。
听说有个插件也叫做cheaterlog,在网上看到2个版本,分别是
Post by ]/* AMX Mod script.
*
* CheaterLog Extension for CLServer
* This file is provided as is (no warranties).
*
* NOTE: Don't install if you are already using HLG
* HELP: hlg_clexec < * | #userid | authid > < command >
*/
#include <amxmod>
public admin_clexec()
{
new arg[32
, cmd[128], player
read_argv(1,arg,31)
read_argv(2,cmd,127)
if (equal(arg,"*"))
{
client_cmd(0,cmd)
}
else if (arg[0] == '#')
{
if ( (player = find_player("k", strtonum(arg[1]) )) != 0 )
client_cmd(player,cmd)
}
else if ( (player = find_player("c",arg)) != 0 )
{
client_cmd(player,cmd)
}
return PLUGIN_HANDLED
}
public plugin_init()
{
register_plugin("CheaterLog Extension","0.1","CheaterLog")
register_srvcmd("hlg_clexec","admin_clexec")
}
Post by ]/* AMX Mod script.
*
* (c) Copyright 2002, [CCC
Taz-Deveil
* This file is provided as is (no warranties).
* Bug fixed
* - NoCL bug after changed map
* - Change name for all with the same name
* http://www.cheaterlog.de
* http://amxmod.net
* http://www.countercheat.com
* Thx to Muldy for condump
*
* replace in server file "CLServer.ini"
* ; --------------------------------------------------------------------------------
* ; DO NOT CHANGE ANYTHING WITHIN THIS SECTION UNLESS YOU KNOW EXACTLY WHAT YOU DO !
* ; Hier solltest du die Finger von lassen, wenn du dich nicht wirklich auskennst !
* ; --------------------------------------------------------------------------------
* ; Enter clexec command to work with.
* ; ----------------------------------
* ; Use HLGuard by default. DON'T FORGET TO INSTALL IT !
* ;CLExecCMD = hlg_clexec
* ; If using StatsMe instead, uncomment this line and comment the HLGuard line:
* ;CLExecCMD = sm_clexec
*
* ; AMX-Mod
* CLExecCMD = amx_cheaterlog
*/
#include <amxmod>
public admin_cheaterlog() {
new varcommande[150], Clide[9]
read_argv(1, Clide,9)
read_argv(2,varcommande,150)
new cluserID = find_player("k",strtonum(Clide[1]))
replace(varcommande,150,"\'[NOCL] ","[NOCL]")
while(containi(varcommande,"\'")!=-1) {
replace(varcommande,150,"\'","")
}
if (cluserID !=0) {
client_cmd(cluserID,"%s",varcommande)
}
return PLUGIN_HANDLED
}
public send_condump()
{
new players[32],pnum
new i
get_players(players, pnum);
for (i=0; i < pnum; i++) {
client_cmd(players,"condump")
}
server_print("[Cheaterlog] AntiNoCL Bug !!")
}
public plugin_init() {
register_plugin("AmxCheaterLog","1.3.040","[CCC]Taz-Devil")
register_srvcmd("amx_cheaterlog","admin_cheaterlog")
set_task(3.0,"send_condump")
}
请问这2各插件的分别作用和使用方法是?
谢谢 ! |
|