关于amx_maxrounds.sma问题。
#include <amxmodx>#include <cstrike>
new round_count
new cvar_maxrounds
public plugin_init()
{
register_plugin("autorestart", "0.1", "Landyhsu")
register_logevent("event_round_end", 2, "1=Round_End")
cvar_maxrounds = register_cvar("amx_maxrounds", "50")
}
public event_round_end()
{
round_count++
if ( round_count >= get_pcvar_num(cvar_maxrounds) )
{
round_count = 0
client_print(0, print_chat, "[末日ㄨ皇朝] 自动刷新服务器...")
set_task(4.0,"restart1")
//set_task(7.0,"restart2")
//set_task(10.0,"restart3")
set_task(13.0,"restart4")
}
}
public restart1()
{
client_print( 0, print_chat, "[末日ㄨ皇朝] 刷新成功!")
server_cmd ("sv_restartround 1")
}
public restart2()
{
//client_print( 0, print_chat, "Server restart 2")
//server_cmd ("sv_restartround 2")
}
public restart3()
{
//client_print( 0, print_chat, "Server restart 3")
//server_cmd ("sv_restartround 3")
}
public restart4()
{
client_print( 0, print_chat, "末日ㄨ皇朝 中国CS1.6战队!!")
client_print( 0, print_chat, "[社区论坛] www.fj58.cn")
client_print( 0, print_chat, "[玩家交流Q群] 49922570")
client_print( 0, print_chat, "[制作人] 太子")
remove_task(0)
} 这我在论坛里找到 服务器刷新插件。但是不能编译。求高手给看看怎么回事。还有这个插件怎么用的。 你把错误发上来让大家看啊,不然怎么能知道你是哪错误的啊 能看到图么 来个人给看看吧- - 求人来给看看这个代码··· 来人帮帮忙·· 本帖最后由 homework 于 2011-11-29 10:07 编辑
这并不是没编译成功,是编译成功了的,只是源码里面 25 28行 有格式错误,没关系的,可以使用。
你可以用 AMXX-STUDIO 工具 缩进一下就下。
这是弄好的,编译不会警告了。
源码里面有广告,请自行更换或清楚,请保留原作者信息,养成好习惯,尊重他们人劳动成果。 8# homework
嗯。。谢谢你了。。
页:
[1]