what kind of a timer are you trying to make? if you want one with only seconds it's extremely easy, just do something like this (not exactly though, it may have a few errors from multitasking and such Wink )
:recalc
#Delay(1)
#seconds!=seconds!+1
#Branch (:recalc)
but for a timer with seconds, minutes, hours, and days, you have to include a bit more, like this...
:recalc
#Delay(1)
#seconds!=seconds!+1
#If (seconds!=60)
{
#minutes!=minutes!+1
#seconds!=0)
}
#If (minutes!=60)
{
#hours!=hours!+1
#minutes!=0
}
#If (hours!=24)
{
#days!=days!+1
#hours!=0
}
#Branch (:recalc)
remember, you can always change the delay time if you dont want the game time to be real time Smile