Set Region Terrain Heights

26 September 2015

  • Release 9.19 - added.

<data Commands> Type: Corrade progressive command Command[wiki]: setregionterrainheights Description[wiki]: The setregionterrainheights command sets the estate heights for the current region. The command requires that Corrade is an estate manager. Permissions[wiki]: land Parameters[wiki]: group, password, data Last Changes[wiki]: Release 9.19 - added. </data>

The setregionterrainheights command sets the estate heights for the current region. The command requires that Corrade is an estate manager.

Command Required Parameters Required Corrade Permissions Required Abilities Example
setregionterrainheights group, password, data land Corrade must be an estate manager.
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            "command", "setregionterrainheights",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            "data", wasListToCSV(
                [
                    17, // Low SW
                    60, // High SW
                    17, // Low NW
                    60, // High NW
                    17, // Low SE
                    60, // High SE
                    17, // Low NE
                    60 // High NE
                ]
            ),
            "callback", wasURLEscape(URL)
        ]
    )
);