Skip to content

llRequestUsername

key llRequestUsername(key AvatarID)

Requests single-word user-name of an avatar. When data is available the dataserver event will be raised.

Requests the user-name of the identified agent. When the user-name is available the dataserver event is raised.

The agent identified 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.

Parameters
AvatarID (key)
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);
}
}
}
  • 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");
  • This function is throttled. The throttle is undocumented, but as of October 2018 the function appears to support bursts of up to 20 requests and sustained use at an average rate of 1.9 requests per second per owner, per region. (Meaning the throttle applies to all objects in the region with the same owner.) Once tripped, the function fails and says “Too many llRequestUsername requests. Throttled until average falls.” on DEBUG_CHANNEL.

  • If the name has been changed some time in the past, this provides only the current name.