OsLoadedCreationID
From OpenSimulator
(Difference between revisions)
m (XEngine to OSSL) |
(Better exemple) |
||
Line 4: | Line 4: | ||
|delay=0 | |delay=0 | ||
|function_syntax=string osLoadedCreationID() | |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"> | |ossl_example=<source lang="lsl"> | ||
− | // | + | // |
+ | // osLoadedCreationID Script Exemple | ||
+ | // Author: djphil | ||
+ | // | ||
− | default { | + | 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); | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | </source> | ||
+ | |additional_info= | ||
}} | }} |
Revision as of 18:21, 5 December 2020
string osLoadedCreationID()
| |
| |
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); } } } |