llRequestUsername

From Second Life Wiki
Revision as of 15:43, 20 August 2010 by Kelly Linden (talk | contribs) (Created page with '{{#vardefine:p_data_desc|DATA_* flag}}{{LSL_Function |func_id=000|func_sleep=0.0|func_energy=10.0 |func=llRequestUsername |return_type=key |p1_type=key|p1_name=id|p1_hover=avatar...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Summary

Function: key llRequestUsername( key id );

Requests the Username of the agent identified by id. When Username 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

  • Display Name changes may take up to 72 hours to propagate. During this time scripts may report the old display name.
All Issues ~ Search JIRA for related Bugs

Examples

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

default {

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

See Also

Events

•  dataserver

Functions

•  llGetUsername

Deep Notes

Search JIRA for related Issues

Signature

function key llRequestUsername( key id );