OsUnixTimeToTimestamp
From OpenSimulator
(Difference between revisions)
m (Remove empty line) |
m (Change See Also) |
||
Line 27: | Line 27: | ||
|additional_info= | |additional_info= | ||
}} | }} | ||
− | + | == See Also == | |
* [[osGetPSTWallclock]] | * [[osGetPSTWallclock]] | ||
* [[osUnixTimeToTimestamp]] | * [[osUnixTimeToTimestamp]] |
Revision as of 19:16, 5 December 2020
string osUnixTimeToTimestamp(integer epoch);
| |
This function allows an input Unix time to be converted to an llGetTimeStamp() format. Please note that there will be no second fractions. This is because the implementation works with seconds only. | |
Threat Level | VeryLow |
Permissions | Use of this function is always allowed by default |
Extra Delay | 0 seconds |
Example(s) | |
// // llGetUnixTime Script Example // Author: djphil // default { state_entry() { llSay(PUBLIC_CHANNEL, "Touch to hear llGetUnixTime running."); } touch_start(integer number) { llSay(PUBLIC_CHANNEL, "Clicked at " + (string)llGetUnixTime()); } } |
See Also
- osGetPSTWallclock
- osUnixTimeToTimestamp