Map Friend
mapfriend (Commands) |
Type | Corrade progressive command |
Command | mapfriend |
Description | 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 | friendship |
Parameters | group , password , firstname , lastname (or agent by UUID) |
Last Changes | none |
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)
]
)
);
|