I see many of you asking about the time script and if you have even a small amount of knowledge you should be able to figure it out. I made a simple little NPC showing how to use timevar for a clock and im sure you could make it much better

Here ya go
// NPC made by LH
if (playerenters) {
timeout=1;
}
if(timeout){
this.time=timevar;
time+=1;
message #v(time);
timeout=1;
}