Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Every 5 minutes, a message "Hi" will be sent in the chat bar, only you can see it
module = { name: "Prompt", onLoad: function () { timer = interval(5000, function () {chat.print("Hi")}); }, onUnload: function () { timer.cancel(); } } script.import("Core.lib");