Difference between revisions of "LlDisplayNameToKeys"

From Second Life Wiki
Jump to navigation Jump to search
m
m
Line 12: Line 12:
|spec
|spec
|caveats=* Works only for agents recently located in the same sim the script is running in. To request UUIDs for a non-local avatars then use [[llRequestAgentKeysByDisplayName|llRequestAgentKeysByDisplayName()]] instead.
|caveats=* Works only for agents recently located in the same sim the script is running in. To request UUIDs for a non-local avatars then use [[llRequestAgentKeysByDisplayName|llRequestAgentKeysByDisplayName()]] instead.
* As Display Names are not unique this function may return multiple avatar UUIDs. This function should therefore never be used for security purposes, instead you should use an avatar's UUID or username directly.
|examples
|examples
|helpers
|helpers

Revision as of 11:58, 30 May 2011

Emblem-important-yellow.png LSL Feature Request
The described function does not exist. This article is a feature request.

Summary

Function: list llDisplayNameToKeys( string display_name );
REQUEST Function ID
0.0 Forced Delay
10.0 Energy

Returns a list containing the UUIDs of all avatars with display_name that are located in the same sim that the script is running in.

• string display_name the Display Name of the avatar(s) to retrieve the UUID(s) of.

Caveats

  • Works only for agents recently located in the same sim the script is running in. To request UUIDs for a non-local avatars then use llRequestAgentKeysByDisplayName() instead.
  • As Display Names are not unique this function may return multiple avatar UUIDs. This function should therefore never be used for security purposes, instead you should use an avatar's UUID or username directly.
All Issues ~ Search JIRA for related Bugs

Examples

Notes

Please vote on SVC-215 if you would like to see this function implemented.

See Also

Functions

•  llUsernameToKey to fetch avatar UUID by username.
•  llRequestAgentKeyByUsername to fetch avatar UUID by username grid-wide.
•  llRequestAgentKeysByDisplayName to fetch avatar UUIDs by display-name grid-wide.

Deep Notes

All Issues

~ Search JIRA for related Issues
   llRequestAgentKey() (llName2Key())

Signature

//function list llDisplayNameToKeys( string display_name );