Difference between revisions of "LlKey2Name"

From Second Life Wiki
Jump to navigation Jump to search
(Changed <pre> to <lsl>)
m
Line 10: Line 10:
* If the avatar is not in online and in the sim the script is running you must use dataserver and llRequestAgentData to get the avatars name from a key
* If the avatar is not in online and in the sim the script is running you must use dataserver and llRequestAgentData to get the avatars name from a key
|constants
|constants
|examples=<lsl>
|examples=<lsl>// Best viewed in Chat History (ctrl-h)
// Best viewed in Chat History (ctrl-h)
default
default
{
{
Line 19: Line 18:
               "\nllDetectedName: " + llDetectedName(0));
               "\nllDetectedName: " + llDetectedName(0));
     }
     }
}
}</lsl>
</lsl>
|helpers
|helpers
|also_functions=
|also_functions=

Revision as of 16:06, 13 February 2008

Deletion Requested
The deletion of this article was requested for the following reason:

Template is no longer used and it's creator thinks it does not function properly.

If there is a need to discuss the deletion of this article, please add your comment(s) here.

Summary

Function: string llKey2Name( key id );

Returns a string that is the name of the prim / avatar id.

• key id

If id is not in the sim and has not been in it recently, an empty string is returned.

Caveats

  • It is difficult to tell the difference between an object that has a name that is an empty string and an object that is not in the sim.
  • If the avatar is not in online and in the sim the script is running you must use dataserver and llRequestAgentData to get the avatars name from a key
All Issues ~ Search JIRA for related Bugs

Examples

<lsl>// Best viewed in Chat History (ctrl-h) default {

   collision_start(integer a)
   {
       llSay(0, "llKey2Name: " + llKey2Name(llDetectedKey(0)) +
              "\nllDetectedName: " + llDetectedName(0));
   }
}</lsl>

See Also

Functions

•  llGetObjectDetails

Articles

•  Prim Attribute Overloading

Deep Notes

Search JIRA for related Issues

Signature

function string llKey2Name( key id );