Navigation

    CCBlueX Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups

    Mineplex bot remover

    Scripts
    6
    12
    441
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • yorik100
      yorik100 last edited by yorik100

      var scriptName = "AntiBot";
      var scriptVersion = 2.0;
      var scriptAuthor = "york";
      
      var EntityLiving = Java.type('net.minecraft.entity.EntityLivingBase');
      var EntityPlayer = Java.type('net.minecraft.entity.player.EntityPlayer');
      function AntiBot() {
          this.getName = function() {
              return "PlexAntiBot";
          };
      
          this.getDescription = function() {
              return "MineplexAntiBot";
          };
      
          this.getCategory = function() {
              return "Misc";
          };
          this.onMotion = function() {
                  if (mc.thePlayer.ticksExisted > 40) {
                      for (var x in mc.theWorld.loadedEntityList) {
                          var entities = mc.theWorld.loadedEntityList[x];
                          if (entities != null && entities != mc.thePlayer && entities instanceof EntityPlayer && (entities.isInvisible() || mc.thePlayer.getDistanceToEntity(entities) < 10) && entities.getDisplayName().getFormattedText().replace("ยงr", "").contains("ยง") && !entities.getDisplayName().getFormattedText().contains(mc.thePlayer.getDisplayName().getFormattedText()) && entities.getHealth() >= 0 && entities.getCustomNameTag() == "") {
                                  mc.theWorld.removeEntity(entities);
                          }
                      }
                  }
              }
          this.onDisable = function() {
      
          }
      
          this.onEnable = function() {}
      }
      var AntiBot = new AntiBot();
      var AntiBotClient;
      
      function onEnable() {
          AntiBotClient = moduleManager.registerModule(AntiBot);
      };
      
      function onDisable() {
          moduleManager.unregisterModule(AntiBotClient);
      };
      

      Base by Soulplexis

      Reply Quote 0
        G 1 Reply Last reply
      • CzechHek
        CzechHek last edited by

        Are you for real?

        Reply Quote 0
          1 Reply Last reply
        • yorik100
          yorik100 last edited by

          Wottttttttttttttt

          Reply Quote 0
            1 Reply Last reply
          • yorik100
            yorik100 last edited by

            Added a new colour check and a check to avoid removing the freecam/blink ghost

            Reply Quote 0
              1 Reply Last reply
            • yorik100
              yorik100 last edited by

              Added a distance check to avoid falses

              Reply Quote 0
                1 Reply Last reply
              • 6Sence
                6Sence last edited by

                Thx I use this in my client

                Reply Quote 0
                  hahayes 1 Reply Last reply
                • hahayes
                  hahayes @6Sence last edited by

                  @6Sence give download link to ur client than, it seems noic : )

                  Reply Quote 0
                    ChocoPie_isme 6Sence 2 Replies Last reply
                  • ChocoPie_isme
                    ChocoPie_isme Banned @hahayes last edited by

                    @hahayes said in Mineplex bot remover:

                    @6Sence give download link to ur client than, it seems noic : )

                    begger smh

                    Reply Quote 0
                      hahayes 1 Reply Last reply
                    • hahayes
                      hahayes @ChocoPie_isme last edited by

                      @ChocoPie_isme no you

                      Reply Quote 0
                        1 Reply Last reply
                      • 6Sence
                        6Sence @hahayes last edited by

                        @hahayes I'm sorry it's private atm, I will probably release it eventually though.

                        Reply Quote 0
                          hahayes 1 Reply Last reply
                        • hahayes
                          hahayes @6Sence last edited by

                          @6Sence nice

                          Reply Quote 0
                            1 Reply Last reply
                          • G
                            Gabriel @yorik100 last edited by

                            Nice.
                            8chars

                            Reply Quote 0
                              1 Reply Last reply

                            Powered by NodeBB | Contributors