ID:273069
 
...been going?

proc/timeparser(timer)
if(timer>10) timer=time2text(timer, ":ss")

Was an idea of what I had in mind, just keep going on through the list, but I ran into a problem:
I only want it to show numbers that are needed.
Like if it's less then 10, just show 5 (if it's that, for instance).

If it's 71 (1 minute, 11 seconds) I would want it to display 1:11.

Sorry if this sounded like a request, I just didn't know how to word it.
Code it yourself. Time2text wont let you do things like that. If you try putting in 's' or 'm' I'm pretty sure it wont recognize it as a valid format.
var/Text
var/Format
if(timer<100) Format=0
else if(timer<600) Format="ss"
else Format="mm:ss"

if(Format) Text=time2text(timer,"[Format]")
else
Text=round(timer/10,1) //Just seconds. No 0 before

world<<"Timer: [Text]"