About RAID Protection
Control raid protection using rcon:
- enable_raid: RAID is enabled, all damage is allowed
- disable_raid: RAID is disabled, no damage is allowed
When RAID is disabled a small UI shows on the top left corner.
Using a scheduler plugin like this you can disable RAID during certain periods of time.
Example config for Scheduler which:
- Restarts the server daily
- Re-enables the raid protection after the restart except if the server was wiped
- Disables the raid protection everyday at 12:00
- Enables the raid protection everyday at 00:00 except on wipe day
{
"UTC": true,
"Cron": [
{
"Minute": "@restart",
"Hour": "*",
"Day": "*",
"Month": "*",
"DoW": "*",
"Command": "!wipe disable_raid"
},
{
"Minute": "45",
"Hour": "5",
"Day": "*",
"Month": "*",
"DoW": "*",
"Command": "restart 300 \"Daily reboot\""
},
{
"Minute": "0",
"Hour": "0",
"Day": "*",
"Month": "*",
"DoW": "0,2,3,4,5,6",
"Command": "disable_raid"
},
{
"Minute": "0",
"Hour": "12",
"Day": "*",
"Month": "*",
"DoW": "*",
"Command": "enable_raid"
}
]
}