one is called by client_authorized and is a task itself but it works fine and id in it is correct
PHP Code:
public client_authorized(id)
{
set_task(2.2,"one",328+id);
}
public one(taskid)
{
new id = taskid-328;
new text[13]="hello";
set_task(4.4, "tasktwo", id+644,text,13);
}
public tasktwo(taskid, const text[13])
{
new id = taskid-644;
client_print( id, print_chat, "o hello with %s!", text);
}
__________________