Skip to content

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.

An image

Supported Plugins

  • NoEscapeIsRaidBlocked(BasePlayer player)
  • RaidZoneHasBlock(ulong userId)
  • RaidBlock #1IsInRaid(BasePlayer player)
  • RaidBlock #2IsRaidBlocked(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
}