OsKey2Name
From OpenSimulator
(Difference between revisions)
m (some format conversions) |
|||
| Line 15: | Line 15: | ||
} | } | ||
</source> | </source> | ||
| − | |description= | + | |description=Returns the avatar's name, based on their UUID. |
| | | | ||
}} | }} | ||
Revision as of 11:04, 30 July 2011
string osKey2Name(key id)
| |
| Returns the avatar's name, based on their UUID. | |
| Threat Level | Low |
| Permissions | No permissions specified |
| Extra Delay | No function delay specified |
| Example(s) | |
// //osKey2Name() example, by Tom Earth. // default { state_entry() { string owner_name = osKey2Name(llGetOwner()); llOwnerSay("Your name is: "+owner_name); } } | |