OsLoadedCreationDate

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m
m (Added permissions and delay information)
Line 1: Line 1:
 
{{osslfunc
 
{{osslfunc
 
|threat_level=Low
 
|threat_level=Low
 +
|permissions=${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
 +
|delay=0
 
|function_syntax=string osLoadedCreationDate()
 
|function_syntax=string osLoadedCreationDate()
 
|ossl_example=<source lang="lsl">
 
|ossl_example=<source lang="lsl">

Revision as of 20:14, 25 October 2017

string osLoadedCreationDate()
  • 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.
Threat Level Low
Permissions ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
Extra Delay 0 seconds
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);
    }
}
Personal tools
General
About This Wiki