CCBlueX Forum

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

    GhostFall 2k20 edition

    Scripts
    6
    22
    560
    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 = "CleanFall";
      var scriptVersion = 2.1;
      var scriptAuthor = "yorik100";
      var noFallModule = moduleManager.getModule("NoFall");
      var BlockPos = Java.type('net.minecraft.util.BlockPos');
      var S08PacketPlayerPosLook = Java.type("net.minecraft.network.play.server.S08PacketPlayerPosLook");
      var C04PacketPlayerPosition = Java.type('net.minecraft.network.play.client.C03PacketPlayer.C04PacketPlayerPosition');
      
      var cleanFall = new CleanFall();
      
      var client;
      
      function CleanFall() {
          this.getName = function() {
              return "GhostFall";
          };
      
          this.getDescription = function() {
              return "Ghost NoFall";
          };
      
          this.getCategory = function() {
              return "Player";
          };
          this.onEnable = function() {
              this.groundFalse = false;
              this.groundTrue = false;
          }
          var fortnite = 0;
          var swag = 0;
          this.onUpdate = function() {
              noFallModule.setState(true)
              if (mc.thePlayer.motionY >= 0 || mc.thePlayer.isInWater() || mc.thePlayer.isInLava() || mc.thePlayer.isOnLadder() || mc.thePlayer.isInWeb || mc.thePlayer.hurtTime > 8) {
                  fortnite = 0;
                  swag = mc.thePlayer.fallDistance;
              }
              if ((mc.thePlayer.fallDistance - swag) > 3.34) {
                  fortnite++;
              }
              if (mc.thePlayer.onGround && (fortnite != 0 || swag != 0)) {
                  swag = 0;
                  if (fortnite != 0) {
                      this.groundFalse = true;
                      for (var i = 0; i <= 48; ++i) {
                          mc.thePlayer.sendQueue.addToSendQueue(new C04PacketPlayerPosition(mc.thePlayer.posX, mc.thePlayer.posY + 0.0625, mc.thePlayer.posZ, false));
                          mc.thePlayer.sendQueue.addToSendQueue(new C04PacketPlayerPosition(mc.thePlayer.posX, mc.thePlayer.posY, mc.thePlayer.posZ, false));
                      }
                      this.groundFalse = false;
                      this.groundTrue = true;
                      mc.thePlayer.sendQueue.addToSendQueue(new C04PacketPlayerPosition(mc.thePlayer.posX, mc.thePlayer.posY, mc.thePlayer.posZ, true));
                      this.groundTrue = false;
                      fortnite = 0;
                  }
              }
          }
          this.onPacket = function(event) {
              var packet = event.getPacket();
              if (packet instanceof C04PacketPlayerPosition && this.groundFalse)
                  packet.onGround = false;
              if (packet instanceof C04PacketPlayerPosition && this.groundTrue)
                  packet.onGround = true;
              if (packet instanceof S08PacketPlayerPosLook) {
                  fortnite = 0;
                  swag = mc.thePlayer.fallDistance;
              }
          }
          this.onDisable = function() {}
      }
      
      function onLoad() {}
      
      function onEnable() {
          client = moduleManager.registerModule(cleanFall);
      }
      
      function onDisable() {
          moduleManager.unregisterModule(client);
      }
      

      Reupload + Recode of my old GhostFall

      1 Reply Last reply Reply Quote 0
      • ChocoPie_isme
        ChocoPie_isme Banned last edited by

        gay ‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎

        1 Reply Last reply Reply Quote 0
        • Just a XingYu
          Just a XingYu last edited by

          Does this bypass Hypixel?

          yorik100 notautismatall 2 Replies Last reply Reply Quote 0
          • CzechHek
            CzechHek last edited by

            what the

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

              @CzechHek said in GhostFall 2k20 edition:

              what the

              It's for servers with bad anticheat/no anticheat when you want to use nofall and look legit

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

                @yorik100 What about checking distance to ground and modifying c03 depending on it.

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

                  @CzechHek said in GhostFall 2k20 edition:

                  @yorik100 What about checking distance to ground and modifying c03 depending on it.

                  1. I'm too lazy to do that
                  2. Already thought of it
                  3. If a block is suddently placed under you, I'll have to calculate the rest of the fall distance needed to take damage and I'm too lazy
                  CzechHek 1 Reply Last reply Reply Quote 0
                  • CzechHek
                    CzechHek @yorik100 last edited by

                    @yorik100 who cares about block getting placed tho it's more legit then going 0.06 x times up

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

                      @CzechHek said in GhostFall 2k20 edition:

                      @yorik100 who cares about block getting placed tho it's more legit then going 0.06 x times up

                      How can mods see that you went 0.06 x times up? They don't, haven't been banned a single time for using this

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

                        @yorik100 I've meant that for weird acs that might exist

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

                          @CzechHek said in GhostFall 2k20 edition:

                          @yorik100 I've meant that for weird acs that might exist

                          It's made for these weird ACs/no AC servers

                          1 Reply Last reply Reply Quote 0
                          • yorik100
                            yorik100 @Just a XingYu last edited by

                            @Just-a-XingYu said in GhostFall 2k20 edition:

                            Does this bypass Hypixel?

                            Bad idea to try it

                            1 Reply Last reply Reply Quote 0
                            • notautismatall
                              notautismatall @Just a XingYu last edited by

                              @Just-a-XingYu

                              if (mc.thePlayer.fallDistance > 2.48F)
                                  mc.thePlayer.sendQueue.addToSendQueue(new C03PacketPlayer(true));
                              

                              hypixel nofall

                              just 2 lines XD

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

                                Lol .

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

                                  @notautismatall said in GhostFall 2k20 edition:

                                  @Just-a-XingYu

                                  if (mc.thePlayer.fallDistance > 2.48F)
                                      mc.thePlayer.sendQueue.addToSendQueue(new C03PacketPlayer(true));
                                  

                                  hypixel nofall

                                  just 2 lines XD

                                  Will ban for timer if you do that

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

                                    @yorik100 It doesn't even change the timer

                                    CzechHek 1 Reply Last reply Reply Quote 0
                                    • CzechHek
                                      CzechHek @notautismatall last edited by

                                      @notautismatall it does tho

                                      yorik100 1 Reply Last reply Reply Quote 1
                                      • yorik100
                                        yorik100 @CzechHek last edited by

                                        @CzechHek said in GhostFall 2k20 edition:

                                        @notautismatall it does tho

                                        1 Reply Last reply Reply Quote 1
                                        • Just a XingYu
                                          Just a XingYu last edited by

                                          So what is the best Hypixel Nofal?

                                          notautismatall yorik100 2 Replies Last reply Reply Quote 0
                                          • notautismatall
                                            notautismatall @Just a XingYu last edited by

                                            @Just-a-XingYu LiquidBounce NoGround nofall works, but it's a bad idea because if you disable after a few minutes you'll get damaged

                                            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