use of fr.glowstoner.fireapi.bungeecord.commands.FireRankCommand in project FireAPI by FireBlade-Serv.
the class BungeeMain method onEnable.
@Override
public void onEnable() {
super.getLogger().info("FireAPI actif !");
this.sql.connection();
this.sql.startSqlRefreshScheduler(1800L);
this.sql.putConsole();
this.rank = new FireRank(this.sql);
super.getProxy().registerChannel("fireapi");
this.log = new BigBrotherLoginGetter();
try {
this.log.load();
} catch (Exception e1) {
e1.printStackTrace();
}
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(), log.getPassword()));
ch.sendPacket(new PacketVersion(VersionType.BUNGEECORD_VERSION));
ch.sendPacket(new PacketCommand("name main-bungeecord"));
BigBrotherConnectionCheck check = new BigBrotherConnectionCheck(this, BigBrotherConnectionCheckType.GLOBAL_CHECK, BigBrotherConnectionInfos.builder().id("main-bungeecord").key(this.log.getKey()).password(this.log.getPassword()).versionType(VersionType.BUNGEECORD_VERSION).build());
check.startChecks();
this.setChecker(check);
} catch (Exception ex) {
BigBrotherConnectionCheck check = new BigBrotherConnectionCheck(this, BigBrotherConnectionCheckType.ERROR_CHECK, BigBrotherConnectionInfos.builder().id("main-bungeecord").key(this.log.getKey()).password(this.log.getPassword()).versionType(VersionType.BUNGEECORD_VERSION).build());
check.startChecks();
}
ConnectionsAPI.getListeners().registerClientListener(new ClientListener() {
@Override
public void onPacketReceive(Packet packet) {
if (packet instanceof PacketExecute) {
BungeeMain.super.getLogger().info("(BigBrother) Execution de la commande : " + ((PacketExecute) packet).getServerCommand() + ".");
BungeeMain.super.getProxy().getPluginManager().dispatchCommand(BungeeMain.super.getProxy().getConsole(), ((PacketExecute) packet).getServerCommand());
} else if (packet instanceof PacketPlayerPing) {
PacketPlayerPing pp = (PacketPlayerPing) packet;
BungeeMain.super.getProxy().getPlayer(pp.getName()).sendMessage(new TextComponent("§6[§ePing§6]§r Ton ping §eproxy§r est de §e" + BungeeMain.super.getProxy().getPlayer(pp.getName()).getPing() + " ms§r !"));
} else if (packet instanceof PacketBigBrotherAC) {
PacketBigBrotherAC gacp = (PacketBigBrotherAC) packet;
if (gacp.getType().equals(BigBrotherTypeAC.CHEAT_DETECTION)) {
if (gacp.getTODO().equals(BigBrotherActionAC.INFORM_STAFF)) {
for (ProxiedPlayer ps : getProxy().getPlayers()) {
if (api.getRankSystem().hasRankAndSup(ps.getName(), Rank.ASSISTANT)) {
ps.sendMessage(new TextComponent("§c[BigBrother] [Cheat] §4" + gacp.getPlayerName() + " §r~ " + gacp.getMessage() + " §c" + gacp.getPing() + "ms"));
}
}
}
}
}
}
});
this.friends = new FireFriends(this);
this.friends.initFolder();
try {
this.friends.loadConfiguration();
} catch (IOException e) {
e.printStackTrace();
}
this.auth = new FireAuth(this);
try {
this.auth.loadConfiguration();
} catch (IOException e) {
e.printStackTrace();
}
this.chat = new FireChat(this);
this.wl = new FireWL(this);
this.wl.loadConfiguration();
super.getLogger().info("Clé de sécurité utilisée : " + this.auth.getSecurityKey());
PluginManager man = super.getProxy().getPluginManager();
man.registerCommand(this, new CoinsCheckerCommand(this, "coins"));
man.registerCommand(this, new Website("site"));
man.registerCommand(this, new Discord("discord"));
man.registerCommand(this, new FriendsCommand(this, "amis"));
man.registerCommand(this, new FireRankCommand(this, "firerank"));
man.registerCommand(this, new RegisterCommand(this, "register"));
man.registerCommand(this, new LoginCommand(this, "login"));
man.registerCommand(this, new FireWhiteListCommand("firewl", this));
StaffChatCommand scc = new StaffChatCommand(this, "firestaffchat");
man.registerCommand(this, scc);
Events events = new Events(this, scc);
man.registerListener(this, events);
this.check.registerListener(events);
api = this;
}
Aggregations