Difference between revisions of "LlRequestDisplayName"

From Second Life Wiki
Jump to navigation Jump to search
(spreading the terror :))
Line 1: Line 1:
{{#vardefine:p_data_desc|DATA_* flag}}{{LSL_Function
{{#vardefine:p_data_desc|DATA_* flag}}{{LSL_Function
|inject-1={{LSL Function/avatar|id}}{{LSL Generic/pre-release|server-release=[[Display Names|DisplayNames]]}}
|inject-1={{LSL Function/avatar|id}}{{LSL Generic/pre-release|server-release=[[Display Names|DisplayNames]]}}
{{LSL_Function/warning|Security|It is '''not''' a good idea to tie any security measures to the display names.}}
{{LSL_Function/warning|Security|It is a '''terrible''' idea to tie any security measures to display names. Don't do it.}}
|func_id=NNN|func_sleep=0.0|func_energy=10.0
|func_id=NNN|func_sleep=0.0|func_energy=10.0
|func=llRequestDisplayName
|func=llRequestDisplayName

Revision as of 15:07, 1 November 2010

Emblem-important-red.png Pre-release Documentation Warning!

This function is not available yet. This documentation was written prior to its final release so it may not match the final implementation.It is slated for release in Server DisplayNames.

Emblem-important-red.png Security Warning!

It is a terrible idea to tie any security measures to display names. Don't do it.

Summary

Function: key llRequestDisplayName( key id );

Requests the Display Name of the agent identified by id. When Display Name is available the dataserver event will be raised. The agent identified by id does not need to be in the same region or online at the time of the request.
Returns a key that is used to identify the dataserver event when it is raised.

• key id avatar UUID

Caveats

  • If the request fails for any reason, there will be no error notice or dataserver event. You may use a timer to check for stale requests.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl>key owner_key; key owner_name_query; string owner_display_name;

default {

   state_entry()
   {
       owner_key = llGetOwner();
       owner_name_query = llRequestDisplayName(owner_key);
   }
   dataserver(key queryid, string data)
   {
       if ( owner_name_query == queryid )
       {
           owner_display_name = data;
           llSay(0, "The display name of the owner of this script : " + owner_display_name );
       }
   }
}</lsl>

See Also

Events

•  dataserver

Functions

•  llGetDisplayName
•  llRequestUsername

Deep Notes

Search JIRA for related Issues

Signature

function key llRequestDisplayName( key id );