OsLoadedCreationTime

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m (some format conversions)
m (Change See Also)
 
(7 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 
{{osslfunc
 
{{osslfunc
 
|threat_level=Low
 
|threat_level=Low
|function_syntax=osLoadedCreationTime()
+
|permissions=${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
 +
|delay=0
 +
|function_syntax=string osLoadedCreationTime()
 +
|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".
 +
* It will return empty string if the region hasn't been created by oar import, or the region uses SQLite for region database.
 
|ossl_example=<source lang="lsl">
 
|ossl_example=<source lang="lsl">
//Example Usage:
+
//
 +
// osLoadedCreationTime Script Exemple
 +
// Author: djphil
 +
//
  
default {
+
default
     touch_start(integer num) {
+
{
         string data = "\n\n Creation Date: " + osLoadedCreationDate();
+
     state_entry()
         data += "\n Creation Time: " + osLoadedCreationTime();
+
    {
         data += "\n Creation ID: " + osLoadedCreationID();
+
         llSay(PUBLIC_CHANNEL, "Touch to see osLoadedCreationTime usage.");
         llSay(0, data);
+
    }
 +
 
 +
    touch_start(integer number)
 +
    {
 +
         string CreationTime = osLoadedCreationTime();
 +
          
 +
        if (CreationTime == "")
 +
        {
 +
            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 time is " + CreationTime);
 +
        }
 
     }
 
     }
 
}
 
}
 
</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".
+
|additional_info=
|
+
 
}}
 
}}
 +
== See Also ==
 +
* [[osLoadedCreationDate]]
 +
* [[osLoadedCreationTime]]
 +
* [[osLoadedCreationID]]

Latest revision as of 19:13, 5 December 2020

string 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".
  • 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 ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
Extra Delay 0 seconds
Example(s)
//
// osLoadedCreationTime Script Exemple
// Author: djphil
//
 
default
{
    state_entry()
    {
        llSay(PUBLIC_CHANNEL, "Touch to see osLoadedCreationTime usage.");
    }
 
    touch_start(integer number)
    {
        string CreationTime = osLoadedCreationTime();
 
        if (CreationTime == "")
        {
            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 time is " + CreationTime);
        }
    }
}


[edit] See Also

Personal tools
General
About This Wiki