Posts: 97
Threads: 3
Joined: Feb 2013
09.03.2013, 11:19
(
Последний раз редактировалось Ari; 02.07.2016 в 16:26.
)
lolll
Posts: 1,166
Threads: 44
Joined: Sep 2009
Reputation:
0
haha nice work man, will diffidently be using this type of function, good for detecting ban evaders etc.
Posts: 2,187
Threads: 81
Joined: Aug 2011
Reputation:
0
Hah, your title got my attention. This is okay, though, some tutorials are there with quite more details. But, +1 for your title!
Posts: 1,905
Threads: 63
Joined: Oct 2011
Reputation:
0
What exactly is the point of this post?
Also, 5 minutes would be 5 times 60,000 milliseconds, not 300,000.
Posts: 97
Threads: 3
Joined: Feb 2013
Quote:
Originally Posted by VincentDunn
What exactly is the point of this post?
Also, 5 minutes would be 5 times 60,000 milliseconds, not 300,000.
|
I forgot to convert that from my testing source, sorry.
FIXED!
Posts: 97
Threads: 3
Joined: Feb 2013
Quote:
Originally Posted by Misiur
Aren't there like alot topics about timers?
pawn Код:
#define MINUTE (60000) #define FIVEMINUTES (MINUTE * 5) #define TENMINUTES (FIVEMINUTES * 2) #define HOUR (MINUTE * 60) #define DAY (HOUR * 24)
|
*sigh* man...
Posts: 10,066
Threads: 38
Joined: Sep 2007
Reputation:
0
And in the end your server will lag like shit because you're constantly setting new timers yet never destroying old ones.