OsUnixTimeToTimestamp
From OpenSimulator
(Difference between revisions)
(It is osUnixTimeToTimestamp not llGetUnixTime) |
m (It is already a string) |
||
Line 16: | Line 16: | ||
state_entry() | state_entry() | ||
{ | { | ||
− | llSay(PUBLIC_CHANNEL, "Touch to | + | llSay(PUBLIC_CHANNEL, "Touch to see osUnixTimeToTimestamp usage."); |
} | } | ||
Line 22: | Line 22: | ||
{ | { | ||
integer epoch = llGetUnixTime(); | integer epoch = llGetUnixTime(); | ||
− | llSay(PUBLIC_CHANNEL, "Clicked at " + | + | llSay(PUBLIC_CHANNEL, "Clicked at " + osUnixTimeToTimestamp(epoch)); |
} | } | ||
} | } |
Revision as of 06:56, 1 January 2021
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) | |
// // osUnixTimeToTimestamp Script Example // Author: djphil // default { state_entry() { llSay(PUBLIC_CHANNEL, "Touch to see osUnixTimeToTimestamp usage."); } touch_start(integer number) { integer epoch = llGetUnixTime(); llSay(PUBLIC_CHANNEL, "Clicked at " + osUnixTimeToTimestamp(epoch)); } } |
See Also
- osGetPSTWallclock
- osUnixTimeToTimestamp