Get Map Avatar Positions

<data Commands> Type: Corrade progressive command Command[wiki]: getmapavatarpositions Description[wiki]: The getmapavatarpositions allows the user to query a remote simulator (supplied as a region name) for the current avatar positions. Permissions[wiki]: interact Parameters[wiki]: group, password, region Last Changes[wiki]: none </data>

The getmapavatarpositions allows the user to query a remote simulator (supplied as a region name) for the current avatar positions. Note that this command is a map-feature which returns clusters of avatars and their positions as a CSV list of avatar numbers by positions.

Command Required Parameters Required Corrade Permissions Example
getmapavatarpositions group, password, region interact
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // get the avatar clusters
            // in the current region
            "command", "getmapavatarpositions",
            "group", wasURLEscape(GROUP),
            "region", wasURLEscape(llGetRegionName()),
            "password", wasURLEscape(PASSWORD),
            "callback", wasURLEscape(URL)
        ]
    )
);

Notes