<?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[Script support.]]></title><description><![CDATA[<pre><code class="language-js">/// api_version=2
var script = registerScript({
    name: "Double Click",
    version: "1.0",
    authors: ["Gridzz"]
});

script.registerModule({
    name: "Double Click",
    category: "Combat", 
    description: "Click Twice!",
    tag: "Hm."}),

function (DoubleClick) {
    DoubleClick.on("enable", function() {
    if (mc.gameSettings.keyBindAttack.isKeyDown() || Mouse.isKeyDown(0)) {
    Robot bot = new Robot();
    bot.mousePress(InputEvent.BUTTON2_DOWN_MASK);
    bot.mouseRelease(InputEvent.BUTTON2_DOWN_MASK);
}
</code></pre>
<p dir="auto">It's not showing up in the GUI in-game, I think I butchered the code any help?</p>
]]></description><link>https://forum.liquidbounce.net/topic/2322/script-support</link><generator>RSS for Node</generator><lastBuildDate>Wed, 20 May 2026 00:55:20 GMT</lastBuildDate><atom:link href="https://forum.liquidbounce.net/topic/2322.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 27 May 2021 19:00:28 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Script support. on Sun, 30 May 2021 14:51:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/czechhek" aria-label="Profile: czechhek">@<bdi>czechhek</bdi></a> said in <a href="/post/18162">Script support.</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gridzz" aria-label="Profile: gridzz">@<bdi>gridzz</bdi></a> there should be<br />
<code>///api_version=2</code><br />
as the first line</p>
<p dir="auto">edit: you had it there before ah</p>
</blockquote>
<p dir="auto">Yeah, still doesn't work. What can I do, as I think it's the codes fault. I want to place blocks twice (aka the double clicking) and also set an option to double click on LMB later.</p>
]]></description><link>https://forum.liquidbounce.net/post/18199</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/18199</guid><dc:creator><![CDATA[Gridzz]]></dc:creator><pubDate>Sun, 30 May 2021 14:51:11 GMT</pubDate></item><item><title><![CDATA[Reply to Script support. on Sat, 29 May 2021 20:07:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gridzz" aria-label="Profile: gridzz">@<bdi>gridzz</bdi></a> there should be<br />
<code>///api_version=2</code><br />
as the first line</p>
<p dir="auto">edit: you had it there before ah</p>
]]></description><link>https://forum.liquidbounce.net/post/18162</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/18162</guid><dc:creator><![CDATA[CzechHek]]></dc:creator><pubDate>Sat, 29 May 2021 20:07:57 GMT</pubDate></item><item><title><![CDATA[Reply to Script support. on Sat, 29 May 2021 16:34:09 GMT]]></title><description><![CDATA[<p dir="auto">Anyone?!&gt;!?!?!?</p>
]]></description><link>https://forum.liquidbounce.net/post/18156</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/18156</guid><dc:creator><![CDATA[Gridzz]]></dc:creator><pubDate>Sat, 29 May 2021 16:34:09 GMT</pubDate></item><item><title><![CDATA[Reply to Script support. on Sat, 29 May 2021 13:23:05 GMT]]></title><description><![CDATA[<p dir="auto">@auto-reply-bot Hey it still doesn't detect the 'DoubleClick' script in the combat GUI, how can I make it detectable?</p>
<p dir="auto">Edit 1: Never-mind. LOL<br />
Edit 2: It works but it doesn't show up in any of the arrow-gui lists, such as combat. I can bind it but I cant find it.<br />
Edit 3: It doesn't work scam</p>
]]></description><link>https://forum.liquidbounce.net/post/18143</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/18143</guid><dc:creator><![CDATA[Gridzz]]></dc:creator><pubDate>Sat, 29 May 2021 13:23:05 GMT</pubDate></item><item><title><![CDATA[Reply to Script support. on Fri, 28 May 2021 20:14:39 GMT]]></title><description><![CDATA[<p dir="auto">@auto-reply-bot said in <a href="/post/18054">Script support.</a>:</p>
<blockquote>
<pre><code>var Mouse = Java.type('org.lwjgl.input.Mouse');
var Robot = Java.type('java.awt.Robot');
var InputEvent = Java.type('java.awt.event.InputEvent');
var script = registerScript({
    name: 'DoubleClick',
    version: '1.0',
    authors: ['Gridzz']
});
script.registerModule({
    name: 'DoubleClick',
    description: 'Click Twice!',
    category: 'Fun'

}, function (module) {
    module.on('update', function () {
        if (mc.gameSettings.keyBindAttack.isKeyDown() || Mouse.isButtonDown(0)) {
            var bot = new Robot();
            bot.mousePress(InputEvent.BUTTON2_DOWN_MASK);
            bot.mouseRelease(InputEvent.BUTTON2_DOWN_MASK);
        }
    });
});
</code></pre>
</blockquote>
<p dir="auto">Thanks! Definitely owe you a favour that I'm going to regret ±</p>
]]></description><link>https://forum.liquidbounce.net/post/18122</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/18122</guid><dc:creator><![CDATA[Gridzz]]></dc:creator><pubDate>Fri, 28 May 2021 20:14:39 GMT</pubDate></item><item><title><![CDATA[Reply to Script support. on Thu, 27 May 2021 19:52:42 GMT]]></title><description><![CDATA[<pre><code>var Mouse = Java.type('org.lwjgl.input.Mouse');
var Robot = Java.type('java.awt.Robot');
var InputEvent = Java.type('java.awt.event.InputEvent');
var script = registerScript({
    name: 'DoubleClick',
    version: '1.0',
    authors: ['Gridzz']
});
script.registerModule({
    name: 'DoubleClick',
    description: 'Click Twice!',
    category: 'Fun'

}, function (module) {
    module.on('update', function () {
        if (mc.gameSettings.keyBindAttack.isKeyDown() || Mouse.isButtonDown(0)) {
            var bot = new Robot();
            bot.mousePress(InputEvent.BUTTON2_DOWN_MASK);
            bot.mouseRelease(InputEvent.BUTTON2_DOWN_MASK);
        }
    });
});
</code></pre>
]]></description><link>https://forum.liquidbounce.net/post/18054</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/18054</guid><dc:creator><![CDATA[DreamWasFucked]]></dc:creator><pubDate>Thu, 27 May 2021 19:52:42 GMT</pubDate></item><item><title><![CDATA[Reply to Script support. on Thu, 27 May 2021 19:42:48 GMT]]></title><description><![CDATA[<p dir="auto">@auto-reply-bot Ty but idk what to do with that, maybe more thorough like actually putting it in the code and sending me it</p>
]]></description><link>https://forum.liquidbounce.net/post/18051</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/18051</guid><dc:creator><![CDATA[Gridzz]]></dc:creator><pubDate>Thu, 27 May 2021 19:42:48 GMT</pubDate></item><item><title><![CDATA[Reply to Script support. on Thu, 27 May 2021 19:40:01 GMT]]></title><description><![CDATA[<p dir="auto">import InputEvent, Robot</p>
]]></description><link>https://forum.liquidbounce.net/post/18048</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/18048</guid><dc:creator><![CDATA[DreamWasFucked]]></dc:creator><pubDate>Thu, 27 May 2021 19:40:01 GMT</pubDate></item><item><title><![CDATA[Reply to Script support. on Thu, 27 May 2021 19:29:24 GMT]]></title><description><![CDATA[<p dir="auto">@auto-reply-bot said in <a href="/post/18042">Script support.</a>:</p>
<blockquote>
<p dir="auto"><img src="/assets/uploads/files/1622142602903-6.png" alt="6.png" class=" img-fluid img-markdown" /></p>
</blockquote>
<p dir="auto">Ok instead of quoting this can you send me an alternative?</p>
]]></description><link>https://forum.liquidbounce.net/post/18044</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/18044</guid><dc:creator><![CDATA[Gridzz]]></dc:creator><pubDate>Thu, 27 May 2021 19:29:24 GMT</pubDate></item><item><title><![CDATA[Reply to Script support. on Thu, 27 May 2021 19:27:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/skiddermaster412" aria-label="Profile: skiddermaster412">@<bdi>skiddermaster412</bdi></a> Removed it but it's still not showing up. ;(</p>
]]></description><link>https://forum.liquidbounce.net/post/18043</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/18043</guid><dc:creator><![CDATA[Gridzz]]></dc:creator><pubDate>Thu, 27 May 2021 19:27:22 GMT</pubDate></item><item><title><![CDATA[Reply to Script support. on Thu, 27 May 2021 19:10:04 GMT]]></title><description><![CDATA[<p dir="auto"><img src="/assets/uploads/files/1622142602903-6.png" alt="6.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.liquidbounce.net/post/18042</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/18042</guid><dc:creator><![CDATA[DreamWasFucked]]></dc:creator><pubDate>Thu, 27 May 2021 19:10:04 GMT</pubDate></item><item><title><![CDATA[Reply to Script support. on Thu, 27 May 2021 19:08:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gridzz" aria-label="Profile: gridzz">@<bdi>gridzz</bdi></a> <img src="/assets/uploads/files/1622142489981-6f8ded5e-73ee-486a-a4fe-cd8e45715bb5-image.png" alt="6f8ded5e-73ee-486a-a4fe-cd8e45715bb5-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.liquidbounce.net/post/18041</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/18041</guid><dc:creator><![CDATA[skiddermaster412]]></dc:creator><pubDate>Thu, 27 May 2021 19:08:13 GMT</pubDate></item></channel></rss>