|
楼主 |
发表于 2006-2-23 14:36:34
|
显示全部楼层
来自 中国–四川–成都
回复: 【原创】findCheater 0.2版
Post by landyhsu
第一时间下载使用,0.2的功能又增加好多。这下在F里面判断哪些玩家存在作弊的准确性又加大了,感谢楼主为反作弊所做出的努力。:super:
2006-02-23 上午在F上测试了一下:我开启了fc_record 1 但是addons\amxmodx\configs文件夹里面没有FindCheater.log 不知道是什么原因???
另外以下:
“1。检测闪光:提供被闪提示,显示在控制台中。”改成在屏幕上显示。
public eventFlash(id)
{
if( get_cvar_num("fc_enable") )
{
new pname[32];
get_user_name(id,pname,31);
//client_print(0,print_chat,"%s is being flashed...",pname);
client_print(0,print_console,"---------[FC] %s is being flashed---------",pname);
}
改成
public eventFlash(id)
{
if( get_cvar_num("fc_enable") )
{
new pname[32];
get_user_name(id,pname,31);
client_print(0,print_chat,"%s is being flashed...",pname);
//client_print(0,print_console,"---------[FC] %s is being flashed---------",pname);
}
这样改对吗?
日志那个你再测试一下。。。我是找了n多资料才找到现在的方法,自己测试时确实成功生成了的。
没错,不过马上增加被闪杀人统计,显示也就无所谓了。
Post by cityhonghu
02/23/2006 - 04:10:12: [ENGINE] Invalid player 8 (not in-game)
L 02/23/2006 - 04:10:12: [AMXX] Run time error 10 (plugin "findCheater.amxx") - debug not enabled!
L 02/23/2006 - 04:10:12: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
:confused:
debug一下下。。。 |
|