|
发表于 2007-12-6 13:06:58
|
显示全部楼层
来自 中国–广东–惠州–惠城区
回复: 大家来看看这个服[1。5WAR]
不让玩家执行cmddlfile命令应该就可以防止下载炸服了吧,如果做这样一个插件,不知道有没效果.
[php]
#include <amxmodx>
#include <amxmisc>
#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);
//在此处添加您的代码...
}
public client_command(id)
{
new command[64]
read_args(command,63)
if(containi(command,"cmddlfile")!=-1 && get_user_team(id)!=-1))
//玩家执行命令中包含"cmddlfile"并且不是正在连接中时
return PLUGIN_HANDLED
}
[/php] |
|