OsLoadedCreationID

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m (some format conversions)
m (some syntax modification (may be major or minor))
Line 1: Line 1:
 
{{osslfunc
 
{{osslfunc
 
|threat_level=Low
 
|threat_level=Low
|function_syntax=osLoadedCreationID()
+
|function_syntax=string osLoadedCreationID()
 
|ossl_example=<source lang="lsl">
 
|ossl_example=<source lang="lsl">
 
//Example Usage:
 
//Example Usage:

Revision as of 03:32, 2 July 2011

string osLoadedCreationID()
This function returns a string containing the UUID that a sim was created with.
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);
    }
}
Personal tools
General
About This Wiki