well here it is and it looks like a copy of yours
rem ************** by Alex Illsley ** aka !hi! *********************
rem tell me if you use this in any thing thow its quite usless
rem this was made in DBC
MyTime = Timer()
ink rgb(0,255,0),0
set text size 100
set text to bold : set text to italic
text 0,0, "my timer thingy"
wait 2000
repeat
set text to normal
set text size 50
ink rgb(0,0,255),0
text 0,60, "press enter to start"
text 0,130, "space key to pause"
text 0,160, "control key to reset"
until returnkey() = 1
do
ink rgb(255,0,0),0
if spacekey() = 0 then ElapsedTime = Timer() - MyTime
print elapsedtime
if controlkey() = 1 then elapsedtime = 0 : mytime = timer()
cls
loop