|
楼主 |
发表于 2008-10-6 08:42:56
|
显示全部楼层
来自 中国–安徽–淮北
回复: Client_autoexec运行在Amxx1.80下时,踢人
上面的插件屏蔽后,现在使用以下内容,也会出现这样问题,奇怪的很。
后来用的是【szjjojj】写的源代码,来自:
http://www.dt-club.net/forum/showpost.php?p=235952&postcount=7
和Rulzy修改后的编辑器,来自:
http://www.dt-club.net/forum/showthread.php?t=35418
代码内容如下:- #include <amxmodx>
- #include <amxmisc>
-
- #define MAX_CMDS 100
-
- public plugin_init() {
- register_plugin("ClientCmd","1.0","Torch")
- return PLUGIN_CONTINUE
- }
-
- new configsdir[200]
- new cmdfile[200]
- new cmd[MAX_CMDS][200]
-
- public client_connect(id) {
-
- get_configsdir(configsdir,199)
- format(cmdfile,199,"%s/client_autoexec.ini",configsdir)
-
- new txtLen
- new result
- for(new i=0;i<MAX_CMDS;i++)
- {
- result = read_file(cmdfile,i,cmd[i],199,txtLen)
- if(result != 0)
- {
- client_cmd(id,cmd[i])
- }
- }
- }
复制代码
看不懂,为啥加这段代码会有很多人再每个小回合结束时踢出呢?没有任何提示。 |
|