basically just the simpleest loop but i need it to count in seconds is there a way to do this ?
int x = 0
While ( x < 45 )
loopMessage.Show() ; countdown message
x += 1
end while
How to i make the loop run once a second?
Or should I use floats and like GetCurrentRealTime() ?