Skip to main content

CanUseWires

Usage​

  • Useful for allowing or preventing a player from using wires
  • Return true/false to override default behavior

Examples​

""
bool? CanUseWires(BasePlayer player)
{
Puts($"{player.displayName} has just tried to use wires");
return null;
}