ID:150286
 
I have this code in my game:

world
New()
world.log << "[name] started at [realtime]."
..()
Del()
world.log << "[name] shutdown at [realtime]."
..()


and when I was testing the "Get" and "Drop" command that I have I noticed that the time was like this:

"Superstitous and Beyond started at 5.88815e+008."

If anyone could help me out with this problem I will be very thankful.

Lee
You want to make sure to use time2text() on world.realtime. world.realtime is the number of tenths of a second since 1/1/2000.
In response to Shadowdarke
Shadowdarke wrote:
You want to make sure to use time2text() on world.realtime. world.realtime is the number of tenths of a second since 1/1/2000.

Ok, Thank you Shadowdarke

Lee