Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

LiquidBounce Forum

  1. Home
  2. Chinese
  3. AAC5船飞js

AAC5船飞js

Scheduled Pinned Locked Moved Chinese
15 Posts 4 Posters 1.3k Views
  • 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.
  • S Offline
    S Offline
    siuank
    wrote on last edited by siuank
    #1

    见标题,实测redesky绕过,其他服我不知道

    /// api_version=2
    var script = registerScript({
        name: "AAC5BoatFly",
        version: "1.00",
        authors: ["ys_"]
    });
    var blink = moduleManager.getModule("Blink");
    var delay = 0;
    var state = 0;
    script.registerModule({
        name: "AAC5BoatFly",
        description: "Fly in aac5 with boat",
        category: "Movement",
        settings: {
            EditSpeed: Setting.float({
                name: "EditSpeed",
                default: 1.0,
                min: 0.0,
                max: 1.5
            }),
            YMotion: Setting.float({
                name: "YMotion",
                default: 0.0,
                min: -0.5,
                max: 0.8
            }),
            Delay: Setting.integer({
                name: "KeepTime",
                default: 10,
                min: 0,
                max: 30
            })
        }
    }, function (module) {
        module.on("enable", function () {
            delay = 0;
            state = 0;
        });
        module.on("update", function () {
            delay++;
            if (module.settings.Mode.get() == "Riding") {
                if (mc.thePlayer.isRiding()) {
                    state = 1;
                    delay = 0;
                } else if (state >= 1) {  // was riding
                    blink.getValue("Pulse").set(false);
                    blink.setState(true);
                    delay = 0;
                    if (mc.thePlayer.onGround) {
                        mc.thePlayer.capabilities.isFlying = true;
                        state++;
                        mc.thePlayer.motionY = module.settings.YMotion.get() + 0.42;
                        setSpeed(0);
                    }
                    if (module.settings.Delay.get() > delay) {
                        mc.thePlayer.capabilities.isFlying = true;
                        addSpeed(Math.min(module.settings.EditSpeed.get() / 10, 0.5) + 0.3);
                        mc.thePlayer.motionY = Math.max(mc.thePlayer.motionY, 0);
                    }
                }
            }
        });
        module.on("disable", function () {
            mc.thePlayer.capabilities.isFlying = false;
            blink.setState(false);
        });
    });
    
    
    function setSpeed(_speed) {
        var playerYaw = radians(mc.thePlayer.rotationYaw);
        mc.thePlayer.motionX = _speed * -Math.sin(playerYaw);
        mc.thePlayer.motionZ = _speed * Math.cos(playerYaw);
    }
    
    function addSpeed(_speed) {
        var playerYaw = radians(mc.thePlayer.rotationYaw);
        mc.thePlayer.motionX += _speed * -Math.sin(playerYaw);
        mc.thePlayer.motionZ += _speed * Math.cos(playerYaw);
    }
    

    这一串是我从我自己的另一个js上扣下来的片段,也许有些不太完整,如果不能用记得告诉我,
    希望能对大家有所帮助

    或者根据这个流程自己改:

    坐船
    下船 开Blink
    脚着地 设置动量 让玩家处于飞行状态
    加速度直到时间超过delay设置
    
    完事之后:
    让玩家不处于飞行状态
    关掉Blink
    
    注意事项:
    完事之后不能直接reset motion,不然有你好受(雾),要减速的话motionXZ *= 0.6就差不多了
    

    (原理来自yt,详细流程和代码来自我自己,抄可以抄,标上出处即可)

    kumri owoK 1 Reply Last reply
    0
    • S siuank

      见标题,实测redesky绕过,其他服我不知道

      /// api_version=2
      var script = registerScript({
          name: "AAC5BoatFly",
          version: "1.00",
          authors: ["ys_"]
      });
      var blink = moduleManager.getModule("Blink");
      var delay = 0;
      var state = 0;
      script.registerModule({
          name: "AAC5BoatFly",
          description: "Fly in aac5 with boat",
          category: "Movement",
          settings: {
              EditSpeed: Setting.float({
                  name: "EditSpeed",
                  default: 1.0,
                  min: 0.0,
                  max: 1.5
              }),
              YMotion: Setting.float({
                  name: "YMotion",
                  default: 0.0,
                  min: -0.5,
                  max: 0.8
              }),
              Delay: Setting.integer({
                  name: "KeepTime",
                  default: 10,
                  min: 0,
                  max: 30
              })
          }
      }, function (module) {
          module.on("enable", function () {
              delay = 0;
              state = 0;
          });
          module.on("update", function () {
              delay++;
              if (module.settings.Mode.get() == "Riding") {
                  if (mc.thePlayer.isRiding()) {
                      state = 1;
                      delay = 0;
                  } else if (state >= 1) {  // was riding
                      blink.getValue("Pulse").set(false);
                      blink.setState(true);
                      delay = 0;
                      if (mc.thePlayer.onGround) {
                          mc.thePlayer.capabilities.isFlying = true;
                          state++;
                          mc.thePlayer.motionY = module.settings.YMotion.get() + 0.42;
                          setSpeed(0);
                      }
                      if (module.settings.Delay.get() > delay) {
                          mc.thePlayer.capabilities.isFlying = true;
                          addSpeed(Math.min(module.settings.EditSpeed.get() / 10, 0.5) + 0.3);
                          mc.thePlayer.motionY = Math.max(mc.thePlayer.motionY, 0);
                      }
                  }
              }
          });
          module.on("disable", function () {
              mc.thePlayer.capabilities.isFlying = false;
              blink.setState(false);
          });
      });
      
      
      function setSpeed(_speed) {
          var playerYaw = radians(mc.thePlayer.rotationYaw);
          mc.thePlayer.motionX = _speed * -Math.sin(playerYaw);
          mc.thePlayer.motionZ = _speed * Math.cos(playerYaw);
      }
      
      function addSpeed(_speed) {
          var playerYaw = radians(mc.thePlayer.rotationYaw);
          mc.thePlayer.motionX += _speed * -Math.sin(playerYaw);
          mc.thePlayer.motionZ += _speed * Math.cos(playerYaw);
      }
      

      这一串是我从我自己的另一个js上扣下来的片段,也许有些不太完整,如果不能用记得告诉我,
      希望能对大家有所帮助

      或者根据这个流程自己改:

      坐船
      下船 开Blink
      脚着地 设置动量 让玩家处于飞行状态
      加速度直到时间超过delay设置
      
      完事之后:
      让玩家不处于飞行状态
      关掉Blink
      
      注意事项:
      完事之后不能直接reset motion,不然有你好受(雾),要减速的话motionXZ *= 0.6就差不多了
      

      (原理来自yt,详细流程和代码来自我自己,抄可以抄,标上出处即可)

      kumri owoK Offline
      kumri owoK Offline
      kumri owo
      wrote on last edited by kumri owo
      #2

      @siuank
      redesky绕过?
      我不是中文我使用谷歌翻译

      Ali00035A 1 Reply Last reply
      0
      • kumri owoK kumri owo

        @siuank
        redesky绕过?
        我不是中文我使用谷歌翻译

        Ali00035A Offline
        Ali00035A Offline
        Ali00035
        wrote on last edited by
        #3

        @r-i-s-e It works but it's not infinite.

        kumri owoK 2 Replies Last reply
        0
        • Ali00035A Ali00035

          @r-i-s-e It works but it's not infinite.

          kumri owoK Offline
          kumri owoK Offline
          kumri owo
          wrote on last edited by kumri owo
          #4

          @ali00035 oh ok

          1 Reply Last reply
          0
          • Ali00035A Ali00035

            @r-i-s-e It works but it's not infinite.

            kumri owoK Offline
            kumri owoK Offline
            kumri owo
            wrote on last edited by
            #5

            @ali00035 I want to play on redesky but my only account is blocked perm for die for some reason

            Ali00035A 1 Reply Last reply
            0
            • kumri owoK kumri owo

              @ali00035 I want to play on redesky but my only account is blocked perm for die for some reason

              Ali00035A Offline
              Ali00035A Offline
              Ali00035
              wrote on last edited by
              #6

              @r-i-s-e said in AAC5船飞js:

              @ali00035 I want to play on redesky but my only account is blocked perm for die for some reason

              Make a new account

              kumri owoK 1 Reply Last reply
              0
              • Ali00035A Ali00035

                @r-i-s-e said in AAC5船飞js:

                @ali00035 I want to play on redesky but my only account is blocked perm for die for some reason

                Make a new account

                kumri owoK Offline
                kumri owoK Offline
                kumri owo
                wrote on last edited by
                #7

                @ali00035 yea but I need a new email

                Ali00035A 1 Reply Last reply
                0
                • kumri owoK kumri owo

                  @ali00035 yea but I need a new email

                  Ali00035A Offline
                  Ali00035A Offline
                  Ali00035
                  wrote on last edited by
                  #8

                  @r-i-s-e just use anything as long as it ends with @gmail.com

                  kumri owoK 1 Reply Last reply
                  0
                  • Ali00035A Ali00035

                    @r-i-s-e just use anything as long as it ends with @gmail.com

                    kumri owoK Offline
                    kumri owoK Offline
                    kumri owo
                    wrote on last edited by
                    #9

                    @ali00035 it needs vertification

                    kumri owoK Ali00035A 2 Replies Last reply
                    0
                    • kumri owoK kumri owo

                      @ali00035 it needs vertification

                      kumri owoK Offline
                      kumri owoK Offline
                      kumri owo
                      wrote on last edited by
                      #10

                      @r-i-s-e like it send u an email to vertifify

                      1 Reply Last reply
                      0
                      • kumri owoK kumri owo

                        @ali00035 it needs vertification

                        Ali00035A Offline
                        Ali00035A Offline
                        Ali00035
                        wrote on last edited by Ali00035
                        #11

                        @r-i-s-e said in AAC5船飞js:

                        @ali00035 it needs vertification

                        You don't need to verify. Just go on Redesky with the username you chose and do the "verification", then enter the password.

                        kumri owoK 1 Reply Last reply
                        0
                        • Ali00035A Ali00035

                          @r-i-s-e said in AAC5船飞js:

                          @ali00035 it needs vertification

                          You don't need to verify. Just go on Redesky with the username you chose and do the "verification", then enter the password.

                          kumri owoK Offline
                          kumri owoK Offline
                          kumri owo
                          wrote on last edited by
                          #12

                          @siuank
                          redesky绕过u dont understand

                          kumri owoK S 2 Replies Last reply
                          0
                          • kumri owoK kumri owo

                            @siuank
                            redesky绕过u dont understand

                            kumri owoK Offline
                            kumri owoK Offline
                            kumri owo
                            wrote on last edited by
                            #13

                            @r-i-s-e I need to make an account on there website, enter an email, u will get a email to verify ur account, and only then u can join

                            1 Reply Last reply
                            0
                            • kumri owoK kumri owo

                              @siuank
                              redesky绕过u dont understand

                              S Offline
                              S Offline
                              siuank
                              wrote on last edited by
                              #14

                              @Systemless Yes it was bypass(because I test it in Redesky)
                              sadly almost no server using AAC5 now (if you found, tell me plz)

                              also, there is a topic https://forums.ccbluex.net/topic/4518/script-aac5-boatfly-bypass for English

                              1 Reply Last reply
                              0
                              • L Offline
                                L Offline
                                LiquidUser1337
                                wrote on last edited by
                                #15

                                RedeSky Network just closed

                                1 Reply Last reply
                                0
                                Reply
                                • Reply as topic
                                Log in to reply
                                • Oldest to Newest
                                • Newest to Oldest
                                • Most Votes


                                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
                                • Login

                                • Login or register to search.
                                • First post
                                  Last post
                                0
                                • Categories
                                • Recent
                                • Tags
                                • Popular
                                • Users
                                • Groups