Get Avatar Picks

24 September 2016

  • Release 9.130 - added.

<data Commands> Type: Corrade progressive command Command[wiki]: getavatarpicks Description[wiki]: The getavatarpicks retrieves the profile picks of an avatar. Permissions[wiki]: interact Parameters[wiki]: group, password, firstname, lastname (or agent by UUID) Last Changes[wiki]: Release 9.130 - added. </data>

The getavatarpicks retrieves the profile picks of an avatar.

Command Required Parameters Required Corrade Permissions Example
getavatarpicks group, password, firstname, lastname (or agent by UUID) interact
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // retrieve all the picks of the
            // avatar named Vassi Oppulate
            "command", "getavatarpicks",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            // or "agent", "69ce412b-dffc-436d-86ff-d788bfa66d9d"
            "firstname", "Vassi",
            "lastname", "Oppulate",
            "callback", wasURLEscape(URL)
        ]
    )
);

Notes