OsLoadedCreationDate
From OpenSimulator
(Difference between revisions)
m |
|||
Line 14: | Line 14: | ||
} | } | ||
</source> | </source> | ||
− | |description=This function returns a string containing the date that a sim was first created. An example of the string returned is "Monday, December 07, 2009". | + | |description=*This function returns a string containing the date that a sim was first created. An example of the string returned is "Monday, December 07, 2009". |
* It will return empty string if the region hasn't been created by oar import, or the region uses SQLite for region database. | * It will return empty string if the region hasn't been created by oar import, or the region uses SQLite for region database. |
Revision as of 01:25, 9 July 2011
string osLoadedCreationDate()
| |
| |
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); } } |