Rulzy请帮个忙,上个问题的延续,谢谢
#include <amxmodx>public plugin_init(){
register_plugin( "restart", "1.0", "yyyy");
}
public client_connect(){
new count=0;
new maxplayers=get_maxplayers();
for(new i=1;i<=maxplayers;i++)
{
if(is_user_connecting(i)) count++;
}
if(count>=8)
{
set_hudmessage(0, 200, 0, -1.0, 0.40, 0, 6.0, 6.0, 0.1, 0.1, 1)
show_hudmessage(0,"Live on Three Restarts")
set_task(5.0, "rround")
}
}
public rround()
{
server_cmd("sv_restartround 1")
}
请问这样可以正常运行了吗?
回复: Rulzy请帮个忙,上个问题的延续,谢谢
应该没什么问题,你测试一下看看。回复: Rulzy请帮个忙,上个问题的延续,谢谢
同时连接有8个人才刷新一次?那意思是只有换局的时候才会出现刷新?
能不能写一个人数达到指定人数在自动刷新呢?
现在的是同时连接等于或大于8人才刷新一次,
效果不太明显
页:
[1]