OsLoadedCreationID

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m (some syntax modification (may be major or minor))
(#5208)
Line 14: Line 14:
 
}
 
}
 
</source>
 
</source>
|description=This function returns a string containing the UUID that a sim was created with.
+
|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.
  
 
|
 
|
 
}}
 
}}

Revision as of 02:24, 9 July 2011

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 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