Text only
|
Text with Images
Valhalla Legends Archive
Programming => General Programming => Visual Basic Programming => Topic started by: LoS on November 09, 2004, 11:41 AM
Title:
Interval to fast
Post by:
LoS
on
November 09, 2004, 11:41 AM
My interval goes by seconds. How do I make it go for minutes?
Title:
Re: Interval to fast
Post by:
MyndFyre
on
November 09, 2004, 12:22 PM
Interval * 60
Title:
Re: Interval to fast
Post by:
The-FooL
on
November 09, 2004, 03:22 PM
Code
Select
Expand
Static seconds as integer
seconds=seconds+1
if seconds=60 then seconds=0
Text only
|
Text with Images