OsLoadedCreationID

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(New page: '''osLoadedCreationID'''() This function returns a string containing the UUID that a sim was created with. osLoadedCreationID has a threat level of Low. <code><pre> //Example Usage: def...)
 
m (Typo)
 
(12 intermediate revisions by 5 users not shown)
Line 1: Line 1:
'''osLoadedCreationID'''()
+
{{osslfunc
 +
|threat_level=Low
 +
|permissions=${OSSL&#124;osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
 +
|delay=0
 +
|function_syntax=string osLoadedCreationID()
 +
|description=* This function returns a string containing the UUID that a sim was originally created with.
 +
* It will return empty string if the region hasn't been created by oar import, or the region uses SQLite as region database.
 +
|ossl_example=<source lang="lsl">
 +
//
 +
// osLoadedCreationID Script Exemple
 +
// Author: djphil
 +
//
  
This function returns a string containing the UUID that a sim was created with. osLoadedCreationID has a threat level of Low.
+
default
 +
{
 +
    state_entry()
 +
    {
 +
        llSay(PUBLIC_CHANNEL, "Touch to see osLoadedCreationID usage.");
 +
    }
  
<code><pre>
+
    touch_start(integer number)
//Example Usage:
+
    {
 +
        string CreationID = osLoadedCreationID();
 +
       
 +
        if (CreationID == "")
 +
        {
 +
            llSay(PUBLIC_CHANNEL, "The region hasn't been created by oar import, or the region uses SQLite for region database.");
 +
        }
  
default {
+
        else
    touch_start(integer num) {
+
        {
        string data = "\n\n Creation Date: " + osLoadedCreationDate();
+
            llSay(PUBLIC_CHANNEL, "The first creation ID is " + CreationID);
        data += "\n Creation Time: " + osLoadedCreationTime();
+
         }
        data += "\n Creation ID: " + osLoadedCreationID();
+
         llSay(0, data);
+
 
     }
 
     }
 
}
 
}
</pre></code>
+
</source>
 
+
|additional_info=
--[[User:ZauberExonar|ZauberExonar]] 02:19, 6 February 2010 (UTC)
+
}}
 +
== See Also ==
 +
* [[osLoadedCreationDate]]
 +
* [[osLoadedCreationTime]]
 +
* [[osLoadedCreationID]]

Latest revision as of 10:05, 7 December 2020

string osLoadedCreationID()
  • This function returns a string containing the UUID that a sim was originally created with.
  • It will return empty string if the region hasn't been created by oar import, or the region uses SQLite as region database.
Threat Level Low
Permissions ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
Extra Delay 0 seconds
Example(s)
//
// osLoadedCreationID Script Exemple
// Author: djphil
//
 
default
{
    state_entry()
    {
        llSay(PUBLIC_CHANNEL, "Touch to see osLoadedCreationID usage.");
    }
 
    touch_start(integer number)
    {
        string CreationID = osLoadedCreationID();
 
        if (CreationID == "")
        {
            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 ID is " + CreationID);
        }
    }
}


[edit] See Also

Personal tools
General
About This Wiki