Well, I have a timer:
+ Code Snippettime=timer()-oldtime
oldtime=timer()
finaltime=finaltime+time
now it seems to calculate fine (not 100% accurate, but it works), but whenver I put in code like:
+ Code Snippetfunction test()
if elapser=0
elapsed=finaltime+15000
elapser=1
endif
if finaltime<=elapsed
print "Success"
endif
endfunction
then what happens is that it will diaplay it for a split-second, then the text will disappear, even though I set elapsed to equal the time the function is called plus 15 seconds. The wierd part is, i've set elapsed to finaltime+600000 and it still only shows for a split-second even though that sets it for 10 minutes.