Get Avatar Pick Data

24 September 2016

  • Release 9.130 - added.
getavatarpickdata (Commands)
TypeCorrade progressive command
Commandgetavatarpickdata
DescriptionThe getavatarpickdata retrieves profile pick data given an avatar and a pick UUID by following the ProfilePick structure.
Permissionsinteract
Parametersgroup, password, firstname, lastname (or agent by UUID), item, data
Last ChangesRelease 9.130 - added.

The getavatarpickdata retrieves profile pick data given an avatar and a pick UUID by following the ProfilePick structure.

Command Required Parameters Required Corrade Permissions Example
getavatarpickdata group, password, firstname, lastname (or agent by UUID), item interact
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // query the avatar Vassi Oppulate
            // and retrieve a pick by UUID
            // to return the pick description text
            "command", "getavatarpickdata",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            "firstname", "Vassi",
            "lastname", "Oppulate",
            // the pick UUID
            "item", "495164eb-c94c-1ef6-be77-1d8cc0d56db5",
            // retrieve the pick description
            "data", "Desc",
            "callback", wasURLEscape(URL)
        ]
    )
);

Notes