OsLoadedCreationID
From OpenSimulator
(Difference between revisions)
ZauberExonar (Talk | contribs) (New page: '''osLoadedCreationID'''() This function returns a string containing the UUID that a sim was created with. osLoadedCreationID has a threat level of Low. <code><pre> //Example Usage: def...) |
|||
Line 16: | Line 16: | ||
</pre></code> | </pre></code> | ||
− | + | ||
+ | [[Category:OSSL]] |
Revision as of 08:48, 19 November 2010
osLoadedCreationID()
This function returns a string containing the UUID that a sim was created with. osLoadedCreationID has a threat level of Low.
//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);
}
}