OsKey2Name
From OpenSimulator
(Difference between revisions)
m |
|||
Line 1: | Line 1: | ||
− | {| | + | {{osslfunc| |
− | + | threat_level = Low | |
− | | | + | | |
− | + | function_syntax = <source lang="lsl"> | |
− | + | ||
− | + | ||
− | + | ||
string osKey2Name(key id) | string osKey2Name(key id) | ||
</source> | </source> | ||
− | | | + | | |
− | + | ossl_example = <source lang="lsl"> | |
// | // | ||
//osKey2Name() example, by Tom Earth. | //osKey2Name() example, by Tom Earth. | ||
Line 22: | Line 19: | ||
} | } | ||
</source> | </source> | ||
− | + | | | |
− | | | + | additional_info = |
− | + | | | |
− | + | }} |
Revision as of 15:29, 12 June 2011
string osKey2Name(key id) | |
No descriptions provided | |
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); } } |