Apps Home
|
Create an App
Chat Encouragement Bot
Author:
colbycums
Description
Source Code
Launch App
Current Users
Created by:
Colbycums
// ==UserScript== // @name Chat Encouragement Bot // @version 1.0 // @description Welcomes new chatters and encourages talking for a chance at a prize // ==/UserScript== let greetedUsers = new Set(); cb.onMessage(function (msg) { const user = msg.user; // Only greet a user once if (!greetedUsers.has(user)) { greetedUsers.add(user); cb.sendNotice("👋 Welcome, " + user + "! Say hi or ask me anything — active chatters get entered into my random prize draw 💋", user); // Optionally: announce in public chat too cb.sendChat("🎉 " + user + " just joined the chat! Talk with me to enter my prize draw! 💕"); } return msg; // Allow message });
© Copyright Chaturbate 2011- 2026. All Rights Reserved.