Example #1
0
 public void banIP(BanIP ban)
 {
     _client.SendCommand("banIP " + ban.id + " " + ban.duration + " " + ban.reason);
     if (_form != null)
     {
         _form.Log("Banned " + ban.name + " from the server! (IP)", LogType.Console, false);
     }
 }
Example #2
0
 public void banIP(BanIP ban)
 {
     _client.SendCommand("banIP " + ban.id + " " + ban.duration + " " + ban.reason);
     if (_form != null) _form.Log("Banned " + ban.name + " from the server! (IP)", LogType.Console, false);
 }
Example #3
0
 public void banIP(BanIP ban)
 {
     rcon.banIP(ban);
 }