<?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[How to make a water shadow prompt script]]></title><description><![CDATA[<p dir="auto">Every 5 minutes, a message "Hi" will be sent in the chat bar, only you can see it</p>
]]></description><link>https://forum.liquidbounce.net/topic/372/how-to-make-a-water-shadow-prompt-script</link><generator>RSS for Node</generator><lastBuildDate>Sun, 07 Jun 2026 23:48:06 GMT</lastBuildDate><atom:link href="https://forum.liquidbounce.net/topic/372.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 04 Aug 2020 11:19:39 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How to make a water shadow prompt script on Tue, 04 Aug 2020 11:39:51 GMT]]></title><description><![CDATA[<pre><code>module = {
    name: "Prompt",
    onLoad: function () {
        timer = interval(5000, function () {chat.print("Hi")});
    },
    onUnload: function () {
        timer.cancel();
    }
}

script.import("Core.lib");
</code></pre>
]]></description><link>https://forum.liquidbounce.net/post/2417</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/2417</guid><dc:creator><![CDATA[CzechHek]]></dc:creator><pubDate>Tue, 04 Aug 2020 11:39:51 GMT</pubDate></item></channel></rss>