OsLoadedCreationDate
From OpenSimulator
(Difference between revisions)
ZauberExonar (Talk | contribs) (New page: osLoadedCreationDate() This function returns a string containing the date that a sim was first created. An example of the string returned is "Monday, December 07, 2009". osLoadedCreation...) |
ZauberExonar (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | osLoadedCreationDate() | + | '''osLoadedCreationDate'''() |
This function returns a string containing the date that a sim was first created. An example of the string returned is "Monday, December 07, 2009". osLoadedCreationDate has a threat level of Low. | This function returns a string containing the date that a sim was first created. An example of the string returned is "Monday, December 07, 2009". osLoadedCreationDate has a threat level of Low. |
Revision as of 18:20, 5 February 2010
osLoadedCreationDate()
This function returns a string containing the date that a sim was first created. An example of the string returned is "Monday, December 07, 2009". osLoadedCreationDate 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);
}
}
--ZauberExonar 02:16, 6 February 2010 (UTC)