How mutch time...
#1

What number i have to write for give the message every 24 mins?
*I made the script but i dunno the "conversion time" if i write 30 i got every second a message :/
Reply
#2

1 millisecond
*1000 = 1 Second
*60 = 1 Min
*24 =24 min

so just use 1000*60*24 and u have your delay
Reply
#3

I always cheat when it comes to things like this. So I don't have to do the calculation, I get the PAWN pre-processor to do it.

pawn Код:
SetTimer("Func", ((1000*60)*24), false);
(1000*60) = 60000 = 1 minute.
60000 * 24 = 24 minutes.
((1000*60)*24) = 24 minutes.

Simples!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)