我想要写个 每15秒检测一次tr
没有Tr就全员处死
首先我在init加入
复制程式
set_task(15.0, "check", _, _, _, "b")
然后 new iTr
复制程式
public check()
{
for (new at = 1; at <= 32; at++)
{
if(has_check != 1)
{
if(get_user_team(at) == 1)
{
has_check++
iTr++
check_tr()
}
}
}
}
public check_tr()
{
for (new at = 1; at <= 32; at++)
{
if(iTr == 0)
{
user_kill(at)
client_print( at, print_center, "没有Tr" )
}
}
}
不知为何,等到处死那里 Sv整个崩溃了
请教各位该如何解决>w<