关于red-anti.amxx
Blanked Client XXXX(xxx.xxx.xxx.xxx) Disconnecte作弊变红过段时间自动踢出,但是随便踢人严重,(踢出作弊可能是巧合-。-)
什么回事?此插件无源代码 等高人解决 想要源码啊..健议你问一下
gearfox 版主吧.我记得这插件是他所发的
不过当时也没见有源码...呵呵{:3_64:} 插件是无源代码的,俄罗斯论坛找来的 搜索下我的帖子. 搜索下我的帖子.
zwfgdlc 发表于 2009-3-5 16:23 http://www.dt-club.net/forum/images/common/back.gif
没找到相关主题 -。-
#include <amxmodx>
#include <amxmisc>
#include <fakemeta>
#define PLUGIN_NAME "New Plug-In"
#define PLUGIN_VERSION "1.0"
#define PLUGIN_AUTHOR "zwfgdlc"
public plugin_init()
{
register_plugin(PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_AUTHOR);
register_forward(FM_PlayerPreThink,"fw_PlayerPreThink");
}
public fw_PlayerPreThink(id)
{
static Float:Color;
/*
Color=红色
Color=绿色
Color=蓝色
*/
pev(id,pev_rendercolor,Color);
if(Color==255.0&&Color==0&&Color==0)
{
/*如果玩家的皮肤是红色,就有可能是作弊的.我没用过这个插件,
你可以自己试下,当玩家作弊被发现时,
身上的皮肤是什么颜色,然后针对性地修改*/
}
return FMRES_IGNORED;
}
页:
[1]