OsKey2Name
From OpenSimulator
(Difference between revisions)
m (some format conversions) |
|||
Line 1: | Line 1: | ||
− | {{osslfunc | + | {{osslfunc |
− | threat_level = Low | + | |threat_level=Low |
− | | | + | |function_syntax=string osKey2Name(key id) |
− | function_syntax = | + | |ossl_example=<source lang="lsl"> |
− | string osKey2Name(key id) | + | |
− | + | ||
− | | | + | |
− | ossl_example = <source lang="lsl"> | + | |
// | // | ||
//osKey2Name() example, by Tom Earth. | //osKey2Name() example, by Tom Earth. | ||
Line 19: | Line 15: | ||
} | } | ||
</source> | </source> | ||
− | | | + | |description= |
− | + | ||
| | | | ||
}} | }} |
Revision as of 20:35, 1 July 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); } } |