Wouldn't you want to change this:
Code:
public client_putinserver(id)
{
set_task(1.0, "client_verificacion1", id, "b")
set_task(35.0, "client_verificacion1", id, "b")
}
to this?:
Code:
public client_putinserver(id)
{
set_task(1.0, "client_verificacion1", id, "b")
set_task(35.0, "client_verificacion2", id, "b")
}
__________________