Skip to main content

CanUseMailbox

Usage​

  • Called when the player tries to use a mailbox
  • Return true or false to override default behavior

Examples​

""
bool? CanUseMailbox(BasePlayer player, Mailbox mailbox)
{
Puts("CanUseMailbox works!");
return null;
}