CCBlueX Forum

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

    Pls NCP Fly Script [BoostFly] Speed 2.5

    Requests
    8
    17
    531
    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.
    • FAN PVP Official
      FAN PVP Official last edited by

      Pls) Pls Pls

      Sigmeme 1 Reply Last reply Reply Quote 0
      • ?
        A Former User last edited by

        please

        1. delete this post
        2. temp ban this user
        FAN PVP Official 1 Reply Last reply Reply Quote 2
        • FAN PVP Official
          FAN PVP Official @Guest last edited by

          @chocopiexd ???

          ? 1 Reply Last reply Reply Quote 0
          • ?
            A Former User @FAN PVP Official last edited by

            @fan-pvp-official said in Pls NCP Fly Script [BoostFly] Speed 2.5:

            @chocopiexd ???

            because you didn't use your brain to post

            FAN PVP Official 1 Reply Last reply Reply Quote 0
            • FAN PVP Official
              FAN PVP Official @Guest last edited by

              @chocopiexd I just want a script for fly ncp which will boost fly and speed of flight

              M 1 Reply Last reply Reply Quote 0
              • M
                mems Moderator @FAN PVP Official last edited by

                @fan-pvp-official It's impossible.

                FAN PVP Official 1 Reply Last reply Reply Quote 0
                • FAN PVP Official
                  FAN PVP Official @mems last edited by FAN PVP Official

                  @mems in phack b17 there is such a flight, but there is a killaura so-so

                  M BobikHatar 2 Replies Last reply Reply Quote 0
                  • M
                    mems Moderator @FAN PVP Official last edited by

                    @fan-pvp-official then go and copy it

                    FAN PVP Official 2 Replies Last reply Reply Quote 0
                    • FAN PVP Official
                      FAN PVP Official @mems last edited by

                      @mems How? Can you try it? I'll send you a link to it

                      M 1 Reply Last reply Reply Quote 0
                      • FAN PVP Official
                        FAN PVP Official @mems last edited by

                        @mems https://disk.yandex.ru/d/veQ14zELNPJMnQ

                        DreamWasFucked 1 Reply Last reply Reply Quote 0
                        • M
                          mems Moderator @FAN PVP Official last edited by

                          @fan-pvp-official I don't do that kind of stuff.

                          1 Reply Last reply Reply Quote 0
                          • DreamWasFucked
                            DreamWasFucked Banned @FAN PVP Official last edited by DreamWasFucked

                            big iq issue moment

                            1 Reply Last reply Reply Quote 0
                            • Sigmeme
                              Sigmeme @FAN PVP Official last edited by Sigmeme

                              @fan-pvp-official ok I decompiled like shit, but you wanted the code here it is now go skid this on your own
                              Edit: It is in java not JavaScript so yeah, also thanks for the client time to skid a ton of shit 🙂 and where did you get this client

                              // =============================================== //
                              // Recompile disabled. Please run Recaf with a JDK //
                              // =============================================== //
                              
                              // Decompiled with: CFR 0.151
                              // Class Version: 6
                              package me.aristhena.client.module.modules.movement.fly;
                              
                              import me.aristhena.client.module.Module;
                              import me.aristhena.client.module.modules.movement.Fly;
                              import me.aristhena.client.module.modules.movement.Speed;
                              import me.aristhena.client.module.modules.movement.fly.FlyMode;
                              import me.aristhena.event.Event;
                              import me.aristhena.event.events.MoveEvent;
                              import me.aristhena.event.events.UpdateEvent;
                              import me.aristhena.utils.ClientUtils;
                              import me.aristhena.utils.MoveUtils;
                              
                              public class NCPFly
                              extends FlyMode {
                                  private double moveSpeed;
                                  private double lastDist;
                                  public static int stage;
                              
                                  public NCPFly(String name, boolean value, Module module) {
                                      super(name, value, module);
                                  }
                              
                                  @Override
                                  public boolean enable() {
                                      if (super.enable()) {
                                          if (ClientUtils.player() != null) {
                                              this.moveSpeed = Speed.getBaseMoveSpeed();
                                          }
                                          this.lastDist = 0.0;
                                          stage = 0;
                                      }
                                      return true;
                                  }
                              
                                  @Override
                                  public boolean onMove(MoveEvent event) {
                                      if (super.onMove(event) && ClientUtils.player().moveForward != 0.0f || ClientUtils.player().moveStrafing != 0.0f) {
                                          if (stage == 0) {
                                              this.moveSpeed = 1.0 + Speed.getBaseMoveSpeed() - 0.05;
                                          } else if (stage == 1) {
                                              ClientUtils.player().motionY = 0.42;
                                              event.setY(0.42);
                                              this.moveSpeed *= 2.13;
                                          } else if (stage == 2) {
                                              if (Fly.boost) {
                                                  MoveUtils.toFwd(Fly.speed);
                                              }
                                              double difference = 0.66 * (this.lastDist - Speed.getBaseMoveSpeed());
                                              this.moveSpeed = this.lastDist - difference;
                                          } else {
                                              this.moveSpeed = this.lastDist - this.lastDist / 159.0;
                                          }
                                          this.moveSpeed = Math.max(Speed.getBaseMoveSpeed(), this.moveSpeed);
                                          ClientUtils.setMoveSpeed(event, this.moveSpeed);
                                          ++stage;
                                      }
                                      return false;
                                  }
                              
                                  @Override
                                  public boolean onUpdate(UpdateEvent event) {
                                      if (super.onUpdate(event)) {
                                          ClientUtils.player().onGround = true;
                                          ClientUtils.player().isAirBorne = false;
                                          if (event.getState() == Event.State.PRE && (ClientUtils.player().moveForward != 0.0f || ClientUtils.player().moveStrafing != 0.0f)) {
                                              double xDist = ClientUtils.x() - ClientUtils.player().prevPosX;
                                              double zDist = ClientUtils.z() - ClientUtils.player().prevPosZ;
                                              this.lastDist = Math.sqrt(xDist * xDist + zDist * zDist);
                                          }
                                      }
                                      return false;
                                  }
                              }
                               
                              
                              1 Reply Last reply Reply Quote 0
                              • BobikHatar
                                BobikHatar @FAN PVP Official last edited by

                                This post is deleted!
                                ? DreamWasFucked 2 Replies Last reply Reply Quote 0
                                • ?
                                  A Former User @BobikHatar last edited by

                                  @божественная-кара agreed

                                  BobikHatar 1 Reply Last reply Reply Quote 0
                                  • DreamWasFucked
                                    DreamWasFucked Banned @BobikHatar last edited by

                                    This post is deleted!
                                    1 Reply Last reply Reply Quote 0
                                    • BobikHatar
                                      BobikHatar @Guest last edited by

                                      @britishbiscuit :axocooler:

                                      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