use of be.goldocelot.admintools.EventsAT in project FireAPI by FireBlade-Serv.
the class BukkitMain method onEnable.
@Override
public void onEnable() {
super.getLogger().info("FireAPI actif !");
sql = new FireSQL();
this.sql.connection();
this.sql.startSqlRefreshScheduler(1800L);
this.sql.putConsole();
rank = new FireRank(this.sql);
this.chat = new FireChat(this);
this.tag = new FireTag(this);
this.tag.registerRanks();
FireBukkitID id = new FireBukkitID(this);
try {
id.loadConfiguration();
} catch (IOException | InvalidConfigurationException e1) {
e1.printStackTrace();
}
this.id = id.getID();
this.log = new BigBrotherLoginGetter();
try {
this.log.load();
} catch (Exception e1) {
e1.printStackTrace();
}
super.getLogger().info("ID serveur utilisé : " + this.id);
this.injector = new FireInjector();
this.ac = new BigBrotherAC(this);
this.ac.init();
this.ac.startKillAuraChecks((long) (30 * 20));
try {
ConnectionsAPI.init();
Client c = new Client("62.4.31.183", 2566);
c.start();
this.c = c;
ConnectionHandler ch = c;
ch.eval();
ch.sendPacket(new PacketLogin(this.log.getKey(), this.log.getPassword()));
ch.sendPacket(new PacketVersion(VersionType.SPIGOT_VERSION));
ch.sendPacket(new PacketCommand("name " + this.id));
BigBrotherConnectionCheck check = new BigBrotherConnectionCheck(this, BigBrotherConnectionCheckType.GLOBAL_CHECK, BigBrotherConnectionInfos.builder().id(this.id).key(this.log.getKey()).password(this.log.getPassword()).versionType(VersionType.SPIGOT_VERSION).build());
check.startChecks();
this.setChecker(check);
} catch (Exception ex) {
BigBrotherConnectionCheck check = new BigBrotherConnectionCheck(this, BigBrotherConnectionCheckType.ERROR_CHECK, BigBrotherConnectionInfos.builder().id(this.id).key(this.log.getKey()).password(this.log.getPassword()).versionType(VersionType.SPIGOT_VERSION).build());
check.startChecks();
}
ConnectionsAPI.getListeners().registerClientListener(new ClientListener() {
@Override
public void onPacketReceive(Packet packet) {
if (packet instanceof PacketExecute) {
BukkitMain.super.getServer().dispatchCommand(BukkitMain.super.getServer().getConsoleSender(), ((PacketExecute) packet).getServerCommand());
} else if (packet instanceof PacketFriends) {
PacketFriends pf = (PacketFriends) packet;
if (pf.getAction() instanceof FriendsActionTransmetterGUI) {
FriendsActionTransmetterGUI fa = (FriendsActionTransmetterGUI) pf.getAction();
if (fa.to().equals(VersionType.SPIGOT_VERSION)) {
FriendsActionInventoryGUI faig = new FriendsActionInventoryGUI(fa.getName(), fa.getFriends(), fa.getConnected());
faig.initPlayer(BukkitMain.this);
faig.generateInventory();
faig.openInventory();
}
}
}
}
});
Events events = new Events(this);
super.getServer().getPluginManager().registerEvents(events, this);
super.getServer().getPluginManager().registerEvents(new EventsAT(this), this);
this.check.registerListener(events);
super.getCommand("ping").setExecutor(new PingCommand(this));
super.getCommand("at").setExecutor(new AdminToolsCmd(this));
api = this;
}
Aggregations