Difference between revisions of "LlRequestUsername"

From Second Life Wiki
Jump to navigation Jump to search
m
m (<lsl> tag to <source>)
Line 13: Line 13:
|spec
|spec
|caveats=
|caveats=
*If you merely wish to show the agent username in the viewer window, it may be more straightforward to use [[Viewer URI Name Space]] and avoid a dataserver event, e.g.:<lsl>llSay(0, "secondlife:///app/agent/" + (string)id + "/username");</lsl>
*If you merely wish to show the agent username in the viewer window, it may be more straightforward to use [[Viewer URI Name Space]] and avoid a dataserver event, e.g.:<source lang="lsl2">llSay(0, "secondlife:///app/agent/" + (string)id + "/username");</source>
|constants
|constants
|examples=<lsl>key owner_name_query;
|examples=<source lang="lsl2">key owner_name_query;
   
   
default
default
Line 31: Line 31:
         }
         }
     }
     }
}</lsl>
}</source>
|helpers
|helpers
|also_functions={{LSL DefineRow||[[llGetUsername]]|}}
|also_functions={{LSL DefineRow||[[llGetUsername]]|}}

Revision as of 13:27, 22 January 2015

Summary

Function: key llRequestUsername( key id );
0.0 Forced Delay
10.0 Energy

Requests the Username of the agent identified by id. When the 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 handle (a key) that is used to identify the dataserver event when it is raised. If id is not the UUID of an avatar, the dataserver event is not raised.

• key id avatar UUID

Caveats

  • If you merely wish to show the agent username in the viewer window, it may be more straightforward to use Viewer URI Name Space and avoid a dataserver event, e.g.:
    llSay(0, "secondlife:///app/agent/" + (string)id + "/username");
    

Examples

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);
        }
    }
}

See Also

Events

•  dataserver

Functions

•  llGetUsername

Deep Notes

Signature

function key llRequestUsername( key id );