Get, Set or Remove Display Name

24 December 2021

  • C11 - added the remove action.

<data Commands> Type: Corrade progressive command Command[wiki]: displayname Description[wiki]: The displayname command allows an authenticated group that has the grooming permission to get, set or remove Corrade's display name. Permissions[wiki]: grooming Parameters[wiki]: group, password, action Last Changes[wiki]: none </data>

The displayname command allows an authenticated group that has the grooming permission to get, set or remove Corrade's display name.

Command Required Parameters Required Corrade Permissions Example
displayname group, password, action grooming
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // shutdown Corrade
            "command", "displayname",
            "group", wasURLEscape(GROUP),
            "action", "set",
            "name", wasURLEscape("Big Betty"),
            "password", wasURLEscape(PASSWORD)
        ]
    )
);
Required Parameters Required Sub-Parameters Required Sub-Parameters Description
action get Retrieves the current display name.
set name Sets the display name to name.
remove Removes the current display name.