|
楼主 |
发表于 2006-2-16 22:12:48
|
显示全部楼层
来自 中国–四川–成都
回复: 【原创】娱乐型反作弊插件v1.1--2005-10-3
#define PLUGIN_CONTINUE 0 /* Results returned by public functions */
#define PLUGIN_HANDLED 1 /* stop other plugins */
#define PLUGIN_HANDLED_MAIN 2 /* to use in client_command(), continue all plugins but stop the command */
说实话。。。具体也不太清楚。。。
一般注册的命令需要handled,task之类的用continue
检查玩家say或检查实体碰撞之类的不能用handled
有些地方又都可以用。。。
我也有个问题。。。cs_get_user_buyzone 你试试能不能工作?我这里永远返回0
上面那个sentrygun代码似乎不太能说明问题,再贴一个,amxx的自带sma文件里(statsx)
- // Find player
- for (id = 1; id < MAX_PLAYERS; id++)
- {
- if (g_izUserRndStats[id][STATS_KILLS] >= iMaxKills && (g_izUserRndStats[id][STATS_KILLS] > iMaxKills || g_izUserRndStats[id][STATS_HS] > iMaxHeadShots))
- {
- iMaxKillsId = id
- iMaxKills = g_izUserRndStats[id][STATS_KILLS]
- iMaxHeadShots = g_izUserRndStats[id][STATS_HS]
- }
- }
复制代码
这个不是用于机器人吧? 这又怎么解释? |
|