<?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[Why does not it work? help me please]]></title><description><![CDATA[<p dir="auto">Stopped working when I added module where<br />
you need to specify hp</p>
<pre><code>///api_version=2
var Kick = moduleManager.getModule('Kick');
var script = registerScript({
    name: "AutoKick",
    version: "1.0.0",
    authors: ["My Name"]
});
script.registerModule({
    name: "AutoKick",
    category: "Fun",
    description: "Automatically kicks you when you are low on health"
    settings: {
       myHealth: Setting.integer({
            name: "Health",
            default: 4,
            min: 1,
            max: 20
        })
    };
}, function (module) {
    module.on("update", function() {
        if ( mc.thePlayer.getHealth() &lt;= module.settings.myHealth.get() ) {
            Kick.setState(true);
        }
    });
});
</code></pre>
]]></description><link>https://forum.liquidbounce.net/topic/1776/why-does-not-it-work-help-me-please</link><generator>RSS for Node</generator><lastBuildDate>Thu, 10 Sep 2026 14:12:38 GMT</lastBuildDate><atom:link href="https://forum.liquidbounce.net/topic/1776.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 02 Apr 2021 17:59:21 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Why does not it work? help me please on Wed, 07 Apr 2021 01:23:06 GMT]]></title><description><![CDATA[<p dir="auto">@mems They wanted to reimplement it, probably to learn ScriptAPI better. I see absolutely nothing wrong with that.</p>
]]></description><link>https://forum.liquidbounce.net/post/13933</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13933</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Wed, 07 Apr 2021 01:23:06 GMT</pubDate></item><item><title><![CDATA[Reply to Why does not it work? help me please on Fri, 02 Apr 2021 18:31:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/its-domme" aria-label="Profile: Its-Domme">@<bdi>Its-Domme</bdi></a> Why would you need that script? You already have one in LiquidBounce.</p>
]]></description><link>https://forum.liquidbounce.net/post/13619</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13619</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Fri, 02 Apr 2021 18:31:19 GMT</pubDate></item><item><title><![CDATA[Reply to Why does not it work? help me please on Fri, 02 Apr 2021 18:11:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/its-domme" aria-label="Profile: its-domme">@<bdi>its-domme</bdi></a> fixed shit</p>
<pre><code>///api_version=2
var Kick = moduleManager.getModule('Kick');
var script = registerScript({
    name: "AutoKick",
    version: "1.0.0",
    authors: ["My Name"]
});
script.registerModule({
    name: "AutoKick",
    category: "Fun",
    description: "Automatically kicks you when you are low on health",
    settings: {
       myHealth: Setting.integer({
            name: "Health",
            default: 4,
            min: 1,
            max: 20
        })
    }
}, function (module) {
    module.on("update", function() {
        if ( mc.thePlayer.getHealth() &lt;= module.settings.myHealth.get() ) {
            Kick.setState(true);
        }
    });
});
</code></pre>
]]></description><link>https://forum.liquidbounce.net/post/13618</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13618</guid><dc:creator><![CDATA[DreamWasFucked]]></dc:creator><pubDate>Fri, 02 Apr 2021 18:11:05 GMT</pubDate></item><item><title><![CDATA[Reply to Why does not it work? help me please on Fri, 02 Apr 2021 18:05:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ohno" aria-label="Profile: ohno">@<bdi>ohno</bdi></a> I tried. Does not work.</p>
]]></description><link>https://forum.liquidbounce.net/post/13617</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13617</guid><dc:creator><![CDATA[Its Domme]]></dc:creator><pubDate>Fri, 02 Apr 2021 18:05:18 GMT</pubDate></item><item><title><![CDATA[Reply to Why does not it work? help me please on Fri, 02 Apr 2021 18:02:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/its-domme" aria-label="Profile: its-domme">@<bdi>its-domme</bdi></a> maybe you need float idk</p>
]]></description><link>https://forum.liquidbounce.net/post/13616</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13616</guid><dc:creator><![CDATA[ohno]]></dc:creator><pubDate>Fri, 02 Apr 2021 18:02:14 GMT</pubDate></item></channel></rss>