|
发表于 2004-8-8 08:00:44
|
显示全部楼层
|阅读模式
来自 中国–北京–北京–海淀区
nwb大侠的代码不好用,等不及了,只有自力更生了,10多年没programming了。。。phew。。。 :10:
#include <amxmod>
new Float:sub_Cycle_timer = 30.0
new Float:Cycle_timer = 300.0
public plugin_init()
{
register_plugin("fk_auth_server","0.2beta","magicmark")
register_cvar("sv_lan_enable","1")
set_cvar_num("sv_lan",1)
set_task(Cycle_timer,"sv_lan_cycle",80000,"",0,"b",3)
}
public sv_lan_cycle()
{
if (get_cvar_num("sv_lan_enable")) {
set_cvar_num("sv_lan",1)
set_task(sub_Cycle_timer,"set_sv_lan_0",80001)
}else
return PLUGIN_HANDLED
}
public set_sv_lan_0()
{
set_cvar_num("sv_lan",0)
}
昨天晚上,我的服务器居然一直是满的。。。 :thefinger
附的是amxx的
ps: this plugin was inspired by nwb13.
大家可以试试什么样的参数最好,晚上起来看看是不是加上人数判断。比如人数超过maxplayers的80%,就暂停sv_lan 0。。。
改正一行:new Float:sub_Cycle_timer = 270.0
附件是错误的code编译的,请大家改正自己编译吧。 |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?注个册吧
×
|