OsLoadedCreationID
From OpenSimulator
(Difference between revisions)
Line 1: | Line 1: | ||
− | {| | + | {{osslfunc| |
− | + | threat_level = Low | |
− | | | + | | |
− | + | function_syntax = <source lang="lsl"> | |
− | + | ||
− | + | ||
− | + | ||
osLoadedCreationID() | osLoadedCreationID() | ||
</source> | </source> | ||
− | | | + | | |
− | + | ossl_example = <source lang="lsl"> | |
//Example Usage: | //Example Usage: | ||
Line 21: | Line 18: | ||
} | } | ||
</source> | </source> | ||
+ | | | ||
+ | additional_info = This function returns a string containing the UUID that a sim was created with. | ||
− | |} | + | | |
− | + | }} | |
− | + | ||
− | + | ||
− | + |
Revision as of 15:34, 12 June 2011
osLoadedCreationID() | |
No descriptions provided | |
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); } } | |
Notes | |
This function returns a string containing the UUID that a sim was created with. |