hello, its my first post here… the doubt is:
is there a way to use wait() with minutes and not with seconds?
like: 1 = 1 minute
and not: 1 = 1 second
Thanks for Reading, TinkyWinkyDev.
hello, its my first post here… the doubt is:
is there a way to use wait() with minutes and not with seconds?
like: 1 = 1 minute
and not: 1 = 1 second
Thanks for Reading, TinkyWinkyDev.
Just multiply by sixty.
wait(5*60) -- 5 minutes
Thanks for helping me with it.