Search in sources :

Example 1 with Packet

use of fr.glowstoner.connectionsapi.network.packets.Packet 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;
}
Also used : ProxiedPlayer(net.md_5.bungee.api.connection.ProxiedPlayer) PacketCommand(fr.glowstoner.connectionsapi.network.packets.command.PacketCommand) BigBrotherConnectionCheck(fr.glowstoner.fireapi.bigbrother.console.check.BigBrotherConnectionCheck) Website(fr.glowstoner.fireapi.bungeecord.commands.misc.Website) PacketVersion(fr.glowstoner.fireapi.bigbrother.console.packets.PacketVersion) RegisterCommand(fr.glowstoner.fireapi.bungeecord.commands.RegisterCommand) PacketPlayerPing(fr.glowstoner.fireapi.bigbrother.console.packets.ping.PacketPlayerPing) PluginManager(net.md_5.bungee.api.plugin.PluginManager) PacketExecute(fr.glowstoner.fireapi.bigbrother.console.packets.PacketExecute) Events(fr.glowstoner.fireapi.bungeecord.events.Events) FireRankCommand(fr.glowstoner.fireapi.bungeecord.commands.FireRankCommand) BigBrotherLoginGetter(fr.glowstoner.fireapi.bigbrother.console.login.BigBrotherLoginGetter) FireWL(fr.glowstoner.fireapi.wl.FireWL) Discord(fr.glowstoner.fireapi.bungeecord.commands.misc.Discord) Client(fr.glowstoner.connectionsapi.network.client.Client) FireRank(fr.glowstoner.fireapi.rank.FireRank) TextComponent(net.md_5.bungee.api.chat.TextComponent) Packet(fr.glowstoner.connectionsapi.network.packets.Packet) LoginCommand(fr.glowstoner.fireapi.bungeecord.commands.LoginCommand) FireAuth(fr.glowstoner.fireapi.bungeecord.auth.FireAuth) PacketLogin(fr.glowstoner.connectionsapi.network.packets.login.PacketLogin) IOException(java.io.IOException) IOException(java.io.IOException) ClientListener(fr.glowstoner.connectionsapi.network.events.ClientListener) StaffChatCommand(fr.glowstoner.fireapi.bungeecord.commands.StaffChatCommand) ConnectionHandler(fr.glowstoner.connectionsapi.network.ConnectionHandler) FriendsCommand(fr.glowstoner.fireapi.bungeecord.commands.FriendsCommand) FireFriends(fr.glowstoner.fireapi.bungeecord.friends.FireFriends) FireWhiteListCommand(fr.glowstoner.fireapi.bungeecord.commands.FireWhiteListCommand) FireChat(fr.glowstoner.fireapi.chat.FireChat) PacketBigBrotherAC(fr.glowstoner.fireapi.bigbrother.ac.packet.PacketBigBrotherAC) CoinsCheckerCommand(fr.glowstoner.fireapi.bungeecord.commands.CoinsCheckerCommand)

Example 2 with Packet

use of fr.glowstoner.connectionsapi.network.packets.Packet 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;
}
Also used : EventsAT(be.goldocelot.admintools.EventsAT) PacketCommand(fr.glowstoner.connectionsapi.network.packets.command.PacketCommand) BigBrotherConnectionCheck(fr.glowstoner.fireapi.bigbrother.console.check.BigBrotherConnectionCheck) PacketVersion(fr.glowstoner.fireapi.bigbrother.console.packets.PacketVersion) FireSQL(fr.glowstoner.fireapi.sql.FireSQL) InvalidConfigurationException(org.bukkit.configuration.InvalidConfigurationException) PacketExecute(fr.glowstoner.fireapi.bigbrother.console.packets.PacketExecute) BigBrotherLoginGetter(fr.glowstoner.fireapi.bigbrother.console.login.BigBrotherLoginGetter) Client(fr.glowstoner.connectionsapi.network.client.Client) FireRank(fr.glowstoner.fireapi.rank.FireRank) Packet(fr.glowstoner.connectionsapi.network.packets.Packet) BigBrotherAC(fr.glowstoner.fireapi.bigbrother.ac.BigBrotherAC) FriendsActionInventoryGUI(fr.glowstoner.fireapi.bukkit.friends.FriendsActionInventoryGUI) FriendsActionTransmetterGUI(fr.glowstoner.fireapi.bungeecord.friends.packets.action.FriendsActionTransmetterGUI) FireBukkitID(fr.glowstoner.fireapi.bukkit.id.FireBukkitID) IOException(java.io.IOException) PacketLogin(fr.glowstoner.connectionsapi.network.packets.login.PacketLogin) PacketFriends(fr.glowstoner.fireapi.bungeecord.friends.packets.PacketFriends) IOException(java.io.IOException) InvalidConfigurationException(org.bukkit.configuration.InvalidConfigurationException) ClientListener(fr.glowstoner.connectionsapi.network.events.ClientListener) PingCommand(fr.glowstoner.fireapi.bukkit.commands.PingCommand) FireTag(fr.glowstoner.fireapi.bukkit.tag.FireTag) ConnectionHandler(fr.glowstoner.connectionsapi.network.ConnectionHandler) FireChat(fr.glowstoner.fireapi.chat.FireChat) AdminToolsCmd(be.goldocelot.admintools.AdminToolsCmd) FireInjector(fr.glowstoner.fireapi.bukkit.nms.packetlistener.FireInjector)

Aggregations

ConnectionHandler (fr.glowstoner.connectionsapi.network.ConnectionHandler)2 Client (fr.glowstoner.connectionsapi.network.client.Client)2 ClientListener (fr.glowstoner.connectionsapi.network.events.ClientListener)2 Packet (fr.glowstoner.connectionsapi.network.packets.Packet)2 PacketCommand (fr.glowstoner.connectionsapi.network.packets.command.PacketCommand)2 PacketLogin (fr.glowstoner.connectionsapi.network.packets.login.PacketLogin)2 BigBrotherConnectionCheck (fr.glowstoner.fireapi.bigbrother.console.check.BigBrotherConnectionCheck)2 BigBrotherLoginGetter (fr.glowstoner.fireapi.bigbrother.console.login.BigBrotherLoginGetter)2 PacketExecute (fr.glowstoner.fireapi.bigbrother.console.packets.PacketExecute)2 PacketVersion (fr.glowstoner.fireapi.bigbrother.console.packets.PacketVersion)2 FireChat (fr.glowstoner.fireapi.chat.FireChat)2 FireRank (fr.glowstoner.fireapi.rank.FireRank)2 IOException (java.io.IOException)2 AdminToolsCmd (be.goldocelot.admintools.AdminToolsCmd)1 EventsAT (be.goldocelot.admintools.EventsAT)1 BigBrotherAC (fr.glowstoner.fireapi.bigbrother.ac.BigBrotherAC)1 PacketBigBrotherAC (fr.glowstoner.fireapi.bigbrother.ac.packet.PacketBigBrotherAC)1 PacketPlayerPing (fr.glowstoner.fireapi.bigbrother.console.packets.ping.PacketPlayerPing)1 PingCommand (fr.glowstoner.fireapi.bukkit.commands.PingCommand)1 FriendsActionInventoryGUI (fr.glowstoner.fireapi.bukkit.friends.FriendsActionInventoryGUI)1