llRequestDisplayName
Revision as of 13:23, 22 January 2015 by ObviousAltIsObvious Resident (talk | contribs) (<lsl> tag to <source>)
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
![]() |
Security Warning! |
It is a terrible idea to tie any security measures to display names; they are not unique and can easily be changed. |
![]() |
Data Execution Warning! |
Display names can contain quotes and some punctuation. While this is not a problem for LSL, remember to escape strings being passed to command line scripts, sql queries, etc. |
Summary
Function: key llRequestDisplayName( key id );361 | Function ID |
0.0 | Forced Delay |
10.0 | Energy |
Requests the Display Name of the agent identified by id. When the 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 the handle (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.
- If you merely wish to show the agent display name 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 + "/displayname");
Examples
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 );
}
}
}