<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[AAC5船飞js]]></title><description><![CDATA[<p dir="auto">见标题，实测redesky绕过，其他服我不知道</p>
<pre><code class="language-javascript">/// 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 &gt;= 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() &gt; 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);
}
</code></pre>
<p dir="auto">这一串是我从我自己的另一个js上扣下来的片段，也许有些不太完整，如果不能用记得告诉我，<br />
希望能对大家有所帮助</p>
<p dir="auto">或者根据这个流程自己改：</p>
<pre><code>坐船
下船 开Blink
脚着地 设置动量 让玩家处于飞行状态
加速度直到时间超过delay设置

完事之后:
让玩家不处于飞行状态
关掉Blink

注意事项:
完事之后不能直接reset motion，不然有你好受(雾)，要减速的话motionXZ *= 0.6就差不多了
</code></pre>
<p dir="auto">（原理来自yt，详细流程和代码来自我自己，抄可以抄，标上出处即可）</p>
]]></description><link>https://forum.liquidbounce.net/topic/4519/aac5船飞js</link><generator>RSS for Node</generator><lastBuildDate>Sun, 19 Apr 2026 23:27:26 GMT</lastBuildDate><atom:link href="https://forum.liquidbounce.net/topic/4519.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 13 Sep 2022 09:39:03 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to AAC5船飞js on Tue, 29 Nov 2022 02:15:28 GMT]]></title><description><![CDATA[<p dir="auto">RedeSky Network just closed</p>
]]></description><link>https://forum.liquidbounce.net/post/37080</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/37080</guid><dc:creator><![CDATA[LiquidUser1337]]></dc:creator><pubDate>Tue, 29 Nov 2022 02:15:28 GMT</pubDate></item><item><title><![CDATA[Reply to AAC5船飞js on Sat, 26 Nov 2022 11:42:58 GMT]]></title><description><![CDATA[<p dir="auto">@Systemless Yes it was bypass(because I test it in Redesky)<br />
sadly almost no server using AAC5 now (if you found, tell me plz)</p>
<p dir="auto">also, there is a topic <a href="https://forums.ccbluex.net/topic/4518/script-aac5-boatfly-bypass" target="_blank" rel="noopener noreferrer nofollow ugc">https://forums.ccbluex.net/topic/4518/script-aac5-boatfly-bypass</a> for English</p>
]]></description><link>https://forum.liquidbounce.net/post/37075</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/37075</guid><dc:creator><![CDATA[siuank]]></dc:creator><pubDate>Sat, 26 Nov 2022 11:42:58 GMT</pubDate></item><item><title><![CDATA[Reply to AAC5船飞js on Thu, 15 Sep 2022 21:33:37 GMT]]></title><description><![CDATA[<p dir="auto">@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</p>
]]></description><link>https://forum.liquidbounce.net/post/33737</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/33737</guid><dc:creator><![CDATA[kumri owo]]></dc:creator><pubDate>Thu, 15 Sep 2022 21:33:37 GMT</pubDate></item><item><title><![CDATA[Reply to AAC5船飞js on Thu, 15 Sep 2022 21:32:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/siuank" aria-label="Profile: siuank">@<bdi>siuank</bdi></a><br />
redesky绕过u dont understand</p>
]]></description><link>https://forum.liquidbounce.net/post/33736</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/33736</guid><dc:creator><![CDATA[kumri owo]]></dc:creator><pubDate>Thu, 15 Sep 2022 21:32:45 GMT</pubDate></item><item><title><![CDATA[Reply to AAC5船飞js on Thu, 15 Sep 2022 13:11:03 GMT]]></title><description><![CDATA[<p dir="auto">@r-i-s-e said in <a href="/post/33711">AAC5船飞js</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ali00035" aria-label="Profile: ali00035">@<bdi>ali00035</bdi></a> it needs vertification</p>
</blockquote>
<p dir="auto">You don't need to verify. Just go on Redesky with the username you chose and do the "verification", then enter the password.</p>
]]></description><link>https://forum.liquidbounce.net/post/33722</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/33722</guid><dc:creator><![CDATA[Ali00035]]></dc:creator><pubDate>Thu, 15 Sep 2022 13:11:03 GMT</pubDate></item><item><title><![CDATA[Reply to AAC5船飞js on Thu, 15 Sep 2022 05:07:47 GMT]]></title><description><![CDATA[<p dir="auto">@r-i-s-e like it send u an email to vertifify</p>
]]></description><link>https://forum.liquidbounce.net/post/33712</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/33712</guid><dc:creator><![CDATA[kumri owo]]></dc:creator><pubDate>Thu, 15 Sep 2022 05:07:47 GMT</pubDate></item><item><title><![CDATA[Reply to AAC5船飞js on Thu, 15 Sep 2022 05:06:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ali00035" aria-label="Profile: ali00035">@<bdi>ali00035</bdi></a> it needs vertification</p>
]]></description><link>https://forum.liquidbounce.net/post/33711</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/33711</guid><dc:creator><![CDATA[kumri owo]]></dc:creator><pubDate>Thu, 15 Sep 2022 05:06:26 GMT</pubDate></item><item><title><![CDATA[Reply to AAC5船飞js on Thu, 15 Sep 2022 05:04:49 GMT]]></title><description><![CDATA[<p dir="auto">@r-i-s-e just use anything as long as it ends with <a class="plugin-mentions-user plugin-mentions-a" href="/user/gmail.com" aria-label="Profile: gmail.com">@<bdi>gmail.com</bdi></a></p>
]]></description><link>https://forum.liquidbounce.net/post/33710</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/33710</guid><dc:creator><![CDATA[Ali00035]]></dc:creator><pubDate>Thu, 15 Sep 2022 05:04:49 GMT</pubDate></item><item><title><![CDATA[Reply to AAC5船飞js on Thu, 15 Sep 2022 05:04:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ali00035" aria-label="Profile: ali00035">@<bdi>ali00035</bdi></a> yea but I need a new email</p>
]]></description><link>https://forum.liquidbounce.net/post/33709</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/33709</guid><dc:creator><![CDATA[kumri owo]]></dc:creator><pubDate>Thu, 15 Sep 2022 05:04:24 GMT</pubDate></item><item><title><![CDATA[Reply to AAC5船飞js on Thu, 15 Sep 2022 04:49:19 GMT]]></title><description><![CDATA[<p dir="auto">@r-i-s-e said in <a href="/post/33705">AAC5船飞js</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ali00035" aria-label="Profile: ali00035">@<bdi>ali00035</bdi></a> I want to play on redesky but my only account is blocked perm for die for some reason</p>
</blockquote>
<p dir="auto">Make a new account</p>
]]></description><link>https://forum.liquidbounce.net/post/33708</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/33708</guid><dc:creator><![CDATA[Ali00035]]></dc:creator><pubDate>Thu, 15 Sep 2022 04:49:19 GMT</pubDate></item><item><title><![CDATA[Reply to AAC5船飞js on Wed, 14 Sep 2022 20:57:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ali00035" aria-label="Profile: ali00035">@<bdi>ali00035</bdi></a> I want to play on redesky but my only account is blocked perm for die for some reason</p>
]]></description><link>https://forum.liquidbounce.net/post/33705</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/33705</guid><dc:creator><![CDATA[kumri owo]]></dc:creator><pubDate>Wed, 14 Sep 2022 20:57:42 GMT</pubDate></item><item><title><![CDATA[Reply to AAC5船飞js on Wed, 14 Sep 2022 20:57:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ali00035" aria-label="Profile: ali00035">@<bdi>ali00035</bdi></a> oh ok</p>
]]></description><link>https://forum.liquidbounce.net/post/33704</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/33704</guid><dc:creator><![CDATA[kumri owo]]></dc:creator><pubDate>Wed, 14 Sep 2022 20:57:08 GMT</pubDate></item><item><title><![CDATA[Reply to AAC5船飞js on Wed, 14 Sep 2022 13:24:43 GMT]]></title><description><![CDATA[<p dir="auto">@r-i-s-e It works but it's not infinite.</p>
]]></description><link>https://forum.liquidbounce.net/post/33689</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/33689</guid><dc:creator><![CDATA[Ali00035]]></dc:creator><pubDate>Wed, 14 Sep 2022 13:24:43 GMT</pubDate></item><item><title><![CDATA[Reply to AAC5船飞js on Tue, 13 Sep 2022 23:33:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/siuank" aria-label="Profile: siuank">@<bdi>siuank</bdi></a><br />
redesky绕过?<br />
我不是中文我使用谷歌翻译</p>
]]></description><link>https://forum.liquidbounce.net/post/33679</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/33679</guid><dc:creator><![CDATA[kumri owo]]></dc:creator><pubDate>Tue, 13 Sep 2022 23:33:57 GMT</pubDate></item></channel></rss>