1. Players join all the time with <size=> or <color=> and it's extremely annoying when using plugins that pass this through. A plugin that could autokick that checks against a list of strings, and kicks with a predefined reason would be amazing :)
     
  2. Code:
    object CanClientLogin(Network.Connection connection)
            {
                string name = connection.username.ToLower();
                if (name.Contains("<color=") || name.Contains("<size=")) return "Error! Change your name to play on this server.";
                return null;
            }
     
  3. Wulf

    Wulf Community Admin

  4. That's @Wulf! That's exactly what I was looking for :) It has everything!