OsGetPSTWallclock

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(Created page with "{{osslfunc |threat_level= |permissions= |delay=0 |function_syntax=float osGetPSTWallclock() |ossl_example= <source lang = "lsl"> // Example of osGetPSTWallclock default { ...")
 
(4 intermediate revisions by one user not shown)
Line 15: Line 15:
 
}
 
}
 
</source>
 
</source>
|description=returns the current PST or PDT time in seconds since midnight }}
+
|description=returns the current PST or PDT time in seconds since midnight
 +
|additional_info=This is replacement for llGetWallclock for those who need PST/PDT time, since llGetWallClock() returns the region  machine local time. Note also that this functions do return a fractional part. Use llRound() to get integer seconds
 +
added 2019, April 8
 +
}}

Revision as of 07:24, 8 April 2019

float osGetPSTWallclock()
returns the current PST or PDT time in seconds since midnight
Threat Level No threat level specified
Permissions No permissions specified
Extra Delay 0 seconds
Example(s)
// Example of osGetPSTWallclock
default
{
    state_entry()
    {
        llSay(0, "started at at " + (string)osGetPSTWallclock());
    }
}
Notes
This is replacement for llGetWallclock for those who need PST/PDT time, since llGetWallClock() returns the region machine local time. Note also that this functions do return a fractional part. Use llRound() to get integer seconds

added 2019, April 8


Personal tools
General
About This Wiki