17.05.2011, 14:57
Try to use the Sleep(ms)/Wait(ms) function:
This function will work as a timer, but when it's executed all functions in the server get paused.
This function will work as a timer, but when it's executed all functions in the server get paused.
pawn Код:
stock Sleep(ms)
{
new t = tickcount();
while(t-tickcount() < ms) { }
return 1;
}