OsLoadedCreationID
From OpenSimulator
(Difference between revisions)
(#5208) |
m (Added permissions and delay information) |
||
Line 1: | Line 1: | ||
{{osslfunc | {{osslfunc | ||
|threat_level=Low | |threat_level=Low | ||
+ | |permissions=${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
+ | |delay=0 | ||
|function_syntax=string osLoadedCreationID() | |function_syntax=string osLoadedCreationID() | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> |
Revision as of 19:14, 25 October 2017
string osLoadedCreationID()
| |
| |
Threat Level | Low |
Permissions | ${XEngine|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); } } |