Trying to catch "Connection Rejected" console messageSolved
So im trying to display to server with server.broadcast(message) when banned player is trying to connect and rejcted with ban reason. but OnServerMessage does not pickup that message that i see in server console

any ideas
OnClientAuth
  void OnClientAuth(Connection connection)
        { 
            Puts($"OnClientAuth works!");
        }

@Wulf sorry that hook does not pickup

Rejecting connection - You are banned from this server (reason)

Seems this is not posible at the moment

Oh, you are just wanting to intercept the message? Then no, that isn't possible without a hook where the rejection happens.
im trying to get this console message to display to all players in server when banned player trys to connect to server.
(19:11:01) | 105.186.246.131:54594/76561198321809950/Mac Rejecting connection - You are banned from this server (testing code 4)​
Right, which there is nothing that hooks the location where that is sent, so you wouldn't be able to without another hook. You may be able to do something like what Console Filter does for intercepting, but otherwise not.
Locked automatically