Set Region Debug

<data Commands> Type: Corrade progressive command Command[wiki]: setregiondebug Description[wiki]: Given estate rights, and Corrade land permissions, the setregiondebug command allows the user to toggle scripts, collisions and physics for the current region. Permissions[wiki]: land Parameters[wiki]: group, password, scripts, collisions, physics Last Changes[wiki]: none </data>

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)
        ]
    )
);