I am trying to do a three second delay, but I do not want to use set_task because I am handling two id's...
So I tried
Code:
for(i = 0; i < 30000; i++)
{
if(i == 29999}
break;
}
I don't think I need the break code, but anyways I think that will give me a 3 second delay, but the question is will it lag the server much? In my experiance, 10000 counts is approximate to 1 second.
__________________