im a newbie to coding n such, but couldnt you loop through and set a task like
PHP Code:
new j = 1;
for(new i=0; i < 33; i++)
{
if(is_user_connected(i))
{
set_task(j, "function", i);
j++;
}
}
if im not mistaken and thats what you want, it would set a task for one person every second.
edit: i have been informed by a trustworthy source that doing it that way is very bad.
darn