Set Region Debug

Given estate rights, and Corrade land permissions, the setregiondebug command allows the user to toggle scripts, collisions and physics for the current region.

Command Required Parameters Required Corrade Permissions Example
setregiondebug group, password, scripts, collisions, physics land
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            "command", "setregiondebug",
            "group", wasURLEscape(GROUP),
            // enable scripts
            "scripts", "true",
            // disable collisions
            "collisions", "false",
            // disable physics
            "physics", "false",
            "password", wasURLEscape(PASSWORD),
            "callback", wasURLEscape(URL)
        ]
    )
);