Navigation

    CCBlueX Forum

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

    Mineplex bot remover

    Scripts
    7
    12
    619
    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

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

        Are you for real?

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

          Wottttttttttttttt

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

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

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

              Added a distance check to avoid falses

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

                Thx I use this in my client

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

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

                  ChocoPie_isme 6Sence 2 Replies Last reply Reply Quote 0
                  • 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

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

                      @ChocoPie_isme no you

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

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

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

                          @6Sence nice

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

                            Nice.
                            8chars

                            1 Reply Last reply Reply Quote 0
                            • First post
                              Last post