有谁知道如何在 PircBots 中使用它? http://www.jibble.org/javadocs/pircbot/index.html 我只需要获取用户主机名并禁止他们。谢谢阅读!
if (cmd.equalsIgnoreCase("ban")) {
if (command[1] != null && command[2] != null) {
//Command[1] is the users name.
//Command[2] is the reason.
//how do i make this ban someone?
}
}