Skip to main content

OnBroadcastCommand

Usage​

  • Called before a command is broadcasted to all connected clients
  • Return a non-null value to override command arguments

Examples​

""
object OnBroadcastCommand(string command, object[] args)
{
Puts("OnBroadcastCommand works!");
return null;
}