OsLoadedCreationID

From OpenSimulator

Revision as of 07:42, 7 November 2019 by Djphil (Talk | contribs)

Jump to: navigation, search
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)
//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);
    }
}
General
About This Wiki