OsLoadedCreationTime
From OpenSimulator
(Difference between revisions)
m (some format conversions) |
|||
Line 1: | Line 1: | ||
− | {{osslfunc| | + | {{osslfunc |
− | threat_level = Low | + | |threat_level=Low |
− | | | + | |function_syntax=osLoadedCreationTime() |
− | function_syntax = | + | |ossl_example=<source lang="lsl"> |
− | osLoadedCreationTime() | + | |
− | + | ||
− | | | + | |
− | ossl_example = <source lang="lsl"> | + | |
//Example Usage: | //Example Usage: | ||
Line 18: | Line 14: | ||
} | } | ||
</source> | </source> | ||
− | | | + | |description=This function returns a string containing the time that a sim was first created. An example of the string returned is "2:06:48 AM". |
− | + | ||
| | | | ||
}} | }} |
Revision as of 20:35, 1 July 2011
osLoadedCreationTime()
| |
This function returns a string containing the time that a sim was first created. An example of the string returned is "2:06:48 AM". | |
Threat Level | Low |
Permissions | No permissions specified |
Extra Delay | No function delay specified |
Example(s) | |
//Example Usage: default { touch_start(integer num) { string data = "\n\n Creation Date: " + osLoadedCreationDate(); data += "\n Creation Time: " + osLoadedCreationTime(); data += "\n Creation ID: " + osLoadedCreationID(); llSay(0, data); } } |