Quote: "however someone told me that there a hit timer in the matrix1 uiltils so I am putting that time into time1 which starts at zero and counts upwards saves doing all that timer stuff,however even if I were not using that I still require a way to see that five mins or 300 seconds have passed"
Yeah, I would use hitimer.
Here's the counter method:
#constant c_SaveInterval 300
counter as integer
counter = c_SaveInterval
currentTick as dword
oldTick as dword
newTick as dword
do : cls
oldTick = currentTick
currentTick = hitimer(1)
newTick = currentTick - oldTick
dec counter, newTick
if counter = 0
// save
counter = c_SaveInterval
endif
set cursor 0,0
print "counter: "+str$(counter)
loop
A dream is a fantasy, if you achieve that fantasy it was never a dream to begin with.