CCBlueX Forum

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

    AACv5 SEXY FLY

    Scripts
    17
    44
    3052
    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.
    • qwq Liulihaocai
      qwq Liulihaocai last edited by

      usable in blocksmc
      21fd8df5-211d-4969-93cf-2be169e9be28-image.png

      script

      /// api_version=2
      var script = registerScript({
          name: "AACv5VanillaFly",
          version: "1.0",
          authors: ["liulihaocai"]
      });
      
      var C03PacketPlayer = Java.type('net.minecraft.network.play.client.C03PacketPlayer')
      var S40PacketDisconnect = Java.type('net.minecraft.network.play.server.S40PacketDisconnect')
      var MovementUtils = Java.type('net.ccbluex.liquidbounce.utils.MovementUtils')
      var AxisAlignedBB = Java.type('net.minecraft.util.AxisAlignedBB')
      
      script.registerModule({
          name: "AACv5VanillaFly",
          description: "Konsolas不要理会谣言与中伤",
          category: "Movement",
          settings: {
              speed: Setting.float({
                  name: "FlySpeed",
                  default: 3.5,
                  min: 1.0,
                  max: 5.0
              }),
              mode: Setting.list({
                  name: "PacketMode",
                  default: "FDP",
                  values: ["FDP", "Rise"]
              })
          }
      }, function(module) {
          var blockc03 = false
          var packets = []
      
          module.on("update", function() {
              mc.thePlayer.capabilities.isFlying = false;
              mc.thePlayer.motionX = 0;
              mc.thePlayer.motionY = 0;
              mc.thePlayer.motionZ = 0;
              if (mc.gameSettings.keyBindJump.isKeyDown())
                  mc.thePlayer.motionY += module.settings.speed.get() / 2;
              if (mc.gameSettings.keyBindSneak.isKeyDown())
                  mc.thePlayer.motionY -= module.settings.speed.get() / 2;
              MovementUtils.strafe(module.settings.speed.get());
      
              // can be used at phase
              mc.thePlayer.noClip = !MovementUtils.isMoving();
          });
      
          module.on("packet", function(event) {
              var packet = event.getPacket()
              if (packet instanceof S40PacketDisconnect) {
                  module.setState(false)
              } else if (blockc03 && packet instanceof C03PacketPlayer && !mc.theWorld.checkBlockCollision(new AxisAlignedBB(packet.x - 0.3, packet.y, packet.z - 0.3, packet.x + 0.3, packet.y + mc.thePlayer.height, packet.z + 0.3))) {
                  packets.push(packet)
                  event.cancelEvent()
                  if (packets.length > 10) { // this can be changed
                      sendC03();
                  }
              }
          });
      
          module.on("enable", function() {
              blockc03 = true
          });
      
          module.on("disable", function() {
              blockc03 = false
              sendC03()
              mc.thePlayer.noClip = false;
              mc.thePlayer.motionX = 0;
              mc.thePlayer.motionY = 0;
              mc.thePlayer.motionZ = 0;
          });
      
          function sendC03() {
              blockc03 = false;
              var mode = module.settings.mode.get().toLowerCase()
              for (var i = 0; i < packets.length; i++) {
                  var packet = packets[i]
                  if (packet.isMoving()) {
                      mc.getNetHandler().addToSendQueue(packet);
                      if (mode == "fdp") {
                          mc.getNetHandler().addToSendQueue((new C03PacketPlayer.C04PacketPlayerPosition(packet.getPositionX(), 1.7976931348623157E+308, packet.getPositionZ(), true)));
                      } else if (mode == "rise") {
                          mc.getNetHandler().addToSendQueue((new C03PacketPlayer.C04PacketPlayerPosition(packet.getPositionX(), -1e+159, packet.getPositionZ() + 10, true)));
                      }
                      mc.getNetHandler().addToSendQueue((new C03PacketPlayer.C04PacketPlayerPosition(packet.getPositionX(), packet.getPositionY(), packet.getPositionZ(), true)));
                  }
              }
              packets = []
              blockc03 = true;
          }
      })
      
      Plumer Man banana1221 2 Replies Last reply Reply Quote 5
      • Plumer Man
        Plumer Man @qwq Liulihaocai last edited by

        @qwq-liulihaocai i instantly got sexied very sexy

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

          Nice idiot thanks for packet logging my client.

          ? 1 Reply Last reply Reply Quote 1
          • ?
            A Former User @6Sence last edited by

            @6sence 1.7976931348623157E+308 oopsie i found the wrong number, now give me the 1.7976931348623157E+308. rice is so yummy

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

              wow the more I look into fdp client the more I realise it's just an extremely shitty version of Rise. Just look at that image, it's so scuffed and ugly. I guess this is what happens when you don't have the skills to learn how to skid visuals properly 🤷

              DreamWasFucked 1 Reply Last reply Reply Quote 6
              • DreamWasFucked
                DreamWasFucked Banned @6Sence last edited by

                mad but yes

                1 Reply Last reply Reply Quote 0
                • M
                  mems Moderator last edited by

                  I kinda noticed the HUD similarity between Rise and FDP Client while watching some bypass videos on servers like BlocksMC. Now that I see this thread, the HUD is kinda the same.

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

                    @mems cause they copy Rise assets in Rise jar and packet log the client.

                    M qwq Liulihaocai 2 Replies Last reply Reply Quote 0
                    • M
                      mems Moderator @6Sence last edited by

                      @6sence And there's perhaps no prevention against that?

                      qwq Liulihaocai 1 Reply Last reply Reply Quote 0
                      • M
                        mems Moderator last edited by

                        @________ https://www.pcmag.com/encyclopedia/term/packet-logger

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

                          @6sence oh lots of visual skid without any src and help like rainbow algorithm and targethud skid with video on yt

                          6Sence 1 Reply Last reply Reply Quote 0
                          • qwq Liulihaocai
                            qwq Liulihaocai @mems last edited by

                            @mems yea, block a packet logger is impossible. i can packet log on my pc, my another pc, or even on my server

                            1 Reply Last reply Reply Quote 0
                            • Plumer Man
                              Plumer Man last edited by

                              @________ iSync the most up to date client with hourly updates!!

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

                                chrome_2KB0udh9k1.png

                                i love this

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

                                  @________ do I look like I cant make alts

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

                                    @________ ok

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

                                      @________ no

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

                                        thats what the mask is

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

                                          @________ cookiezi 727 pp blue zenith hdhr 97.27% acc (WORLD RECORD) (AMONG US) (LIQUIDBOUNCE FOR OSU)

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

                                            @qwq-liulihaocai dude, you copy my designs, go through rise assets folder (and I know this because the background of fdp client is the background.png in Rise assets in the jar),and you blatantly packet log(holy shit look at his code, his even failed to do it a couple times, like the slime disabler that he packet logged wrong and it fucking bans but he didn't realise and added it anyway).

                                            qwq Liulihaocai 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            About
                                            • Terms of Service
                                            • Privacy Policy
                                            • Status
                                            • Contact Us
                                            Downloads
                                            • Releases
                                            • Source code
                                            • License
                                            Docs
                                            • Tutorials
                                            • CustomHUD
                                            • AutoSettings
                                            • ScriptAPI
                                            Community
                                            • Forum
                                            • Guilded
                                            • YouTube
                                            • Twitter
                                            • D.Tube