• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Lua AddEvent

Archez

'
Senator
Joined
Jun 26, 2008
Messages
6,589
Solutions
1
Reaction score
73
Location
Mexico
This is a dumb question, but I haven't figured out how many time is this:

LUA:
addEvent(onTimer2, 2*60*1000)

I would be very happy if someone tell me how many time it is and explain why...
rox.png
 
1sec = 1000ms
That means:
60*1000 = 60000ms which is 60 seconds.
2*60sec = 2 minutes.
So that timer will be 2 minutes.
2*60*1000 = 120000ms which is 2min
 
Back
Top