Difference between revisions of "LlRequestUsername"

From Second Life Wiki
Jump to navigation Jump to search
(globals gone wild)
Line 12: Line 12:
|caveats=*If you merely wish to show avatar name information in the viewer window, it may be more straightforward to avoid a dataserver event and simply output: <lsl>llSay(0, "secondlife:///app/agent/" + (string)id + "/about");</lsl>
|caveats=*If you merely wish to show avatar name information in the viewer window, it may be more straightforward to avoid a dataserver event and simply output: <lsl>llSay(0, "secondlife:///app/agent/" + (string)id + "/about");</lsl>
|constants
|constants
|examples=<lsl>
|examples=<lsl>key owner_name_query;
key owner_key;
key owner_name_query;
string owner_username;
   
   
default
default
Line 21: Line 18:
     state_entry()
     state_entry()
     {
     {
         owner_key = llGetOwner();
         owner_name_query = llRequestUsername(llGetOwner());
        owner_name_query = llRequestUsername(owner_key);
     }
     }
     dataserver(key queryid, string data)
     dataserver(key queryid, string data)
     {
     {
         if ( owner_name_query == queryid )
         if ( owner_name_query == queryid )
         {
         {
            owner_username = data;
             llSay(0, "The username of the owner of this script : " + data);
             llSay(0, "The username of the owner of this script : " + owner_username );
         }
         }
     }
     }

Revision as of 21:03, 23 January 2011

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

  • If you merely wish to show avatar name information in the viewer window, it may be more straightforward to avoid a dataserver event and simply output: <lsl>llSay(0, "secondlife:///app/agent/" + (string)id + "/about");</lsl>
All Issues ~ Search JIRA for related Bugs

Examples

<lsl>key owner_name_query;

default {

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

See Also

Events

•  dataserver

Functions

•  llGetUsername

Deep Notes

Search JIRA for related Issues

Signature

function key llRequestUsername( key id );