Raid Block
A player's profile can display a Raid Block status, helping moderators determine whether it's an appropriate time to call the player in for a check.

Supported Plugins
- NoEscape –
IsRaidBlocked(BasePlayer player) - RaidZone –
HasBlock(ulong userId) - RaidBlock #1 –
IsInRaid(BasePlayer player) - RaidBlock #2 –
IsRaidBlocked(BasePlayer player)
Example
Implement support for the following hook in your plugin. Based on the returned true/false value, the profile will display the raid block status.
csharp
bool RustApp_IsInRaid(ulong userId) {
// TODO: Your logic to detect if the user is raid-blocked
}