Map Friend

<data Commands> Type: Corrade progressive command Command[wiki]: mapfriend Description[wiki]: Given map-tracking permissions from a friend that is currently online and friendship Corrade permissions, the mapfriend command will return a CSV list of region name and region position of the friend to be mapped. Permissions[wiki]: friendship Parameters[wiki]: group, password, firstname, lastname (or agent by UUID) Last Changes[wiki]: none </data>

Given map-tracking permissions from a friend that is currently online and friendship Corrade permissions, the mapfriend command will return a CSV list of region name and region position of the friend to be mapped.

Command Required Parameters Required Corrade Permissions Example
mapfriend group, password, firstname, lastname (or agent by UUID) friendship
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // return the current region
            // and position within the region
            // of the friend named Taz Whirlwind
            "command", "mapfriend",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            // or "agent", "69ce412b-dffc-436d-86ff-d788bfa66d9d"
            "firstname", "Taz",
            "lastname", "Whirlwind",
            "callback", wasURLEscape(URL)
        ]
    )
);