I followed the instructions of this guide i found:
http://forum.thegamecreators.com/?m=forum_view&t=59347&b=7#post
and well it was working at first. so i saved it and the next day i try to work on the game some more and now everythings messed up.
wether the timer actualy displays or not is a hit and miss, when it does everything just freazes up, and when it doesnt show it acts as if the values i set for the timer never have existed ever.
heres the codes that i am using:
set text opaque
Time = timer()
ToStart = 10
do
if ToStart > 0
repeat
Elapsed=(Timer()-Time)/1000
center text 320, 450, "Your match will start in:"
center text 340, 450, Str$(ToStart)
ToStart = (ToStart - Elapsed)
Until ToStart = 0 : rem left off here http://forum.thegamecreators.com/?m=forum_view&t=59347&b=7
endif
loop
any help?