LlGetTimeOfDay
De DigiWiki.
//Time will be less than 4 hours unless the sun is locked. default { touch_start(integer total_number) { float tod = llGetTimeOfDay( ); llOwnerSay("Time since last region restart or SL midnight (based on SL 4 hour day):"); integer hours = ((integer)tod / 3600) ; integer minutes = ((integer)tod / 60) - (hours * 60); llOwnerSay((string) tod + " seconds which is "+(string) hours+"h "+(string) minutes+"m"); } }