01.05.2018, 01:57
You should add something like that:
PHP код:
new random = Iter_Random(Player),
count,
max_count = Iter_Count(Player);
while(!IsLoggedIn[random] || IsJailed[random] == 1 || IsAFK[random] == 1)
{
random = Iter_Random(Player);// I use foreach include (pick a random player).
if(++count > max_count)
break;
}

