|
发表于 2009-3-5 20:42:49
|
显示全部楼层
来自 中国–广东–惠州–惠城区
- #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[3];
- /*
- Color[0]=红色
- Color[1]=绿色
- Color[2]=蓝色
- */
- pev(id,pev_rendercolor,Color);
- if(Color[0]==255.0&&Color[1]==0&&Color[2]==0)
- {
- /*如果玩家的皮肤是红色,就有可能是作弊的.我没用过这个插件,
- 你可以自己试下,当玩家作弊被发现时,
- 身上的皮肤是什么颜色,然后针对性地修改*/
- }
- return FMRES_IGNORED;
- }
复制代码 |
|