#1

How to set an infinite timer amount?

SetTimer(funcname[], interval, repeating);

I want that interval to be infinite or till i close my server.
Reply
#2

Just set repeating to true and the timer will repeat.
Reply
#3

Код:
SetTimer("taskCmd", 1, 1);
Код:
public taskCmd()
{
SetTimer("functionCmd", 1, 1);
}
Reply
#4

Oh ty
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)