OsLoadedCreationDate
From OpenSimulator
(Difference between revisions)
(Better exemple) |
(Add See Also) |
||
Line 37: | Line 37: | ||
|additional_info= | |additional_info= | ||
}} | }} | ||
+ | '''See Also:''' | ||
+ | * [[osLoadedCreationdate]] | ||
+ | * [[osLoadedCreationTime]] | ||
+ | * [[osLoadedCreationID]] |
Revision as of 18:22, 5 December 2020
string osLoadedCreationDate()
| |
| |
Threat Level | Low |
Permissions | ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER |
Extra Delay | 0 seconds |
Example(s) | |
// // osLoadedCreationDate Script Exemple // Author: djphil // default { state_entry() { llSay(PUBLIC_CHANNEL, "Touch to see osLoadedCreationDate usage."); } touch_start(integer number) { string CreationDate = osLoadedCreationDate(); if (CreationDate == "") { llSay(PUBLIC_CHANNEL, "The region hasn't been created by oar import, or the region uses SQLite for region database."); } else { llSay(PUBLIC_CHANNEL, "The first creation date is " + CreationDate); } } } |
See Also: