Set Region Debug
setregiondebug (Commands) |
Type | Corrade progressive command |
Command | setregiondebug |
Description | Given estate rights, and Corrade land permissions, the setregiondebug command allows the user to toggle scripts , collisions and physics for the current region. |
Permissions | land |
Parameters | group , password , scripts , collisions , physics |
Last Changes | none |
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)
]
)
);
|