Apps Home
|
Create an App
Chaturbate Auto Message
Author:
nyrobinova
Description
Source Code
Launch App
Current Users
Created by:
Nyrobinova
// ====== SETTINGS ====== cb.settings_choices = [ { name: "interval_minutes", type: "int", minValue: 20, maxValue: 180, defaultValue: 20, label: "Message interval (minutes)" }, { name: "auto_message", type: "str", minLength: 1, maxLength: 500, defaultValue: "Don't forget to check the tip menu and reach the goal ❤️", label: "Message to post in chat" } ]; // ====== BOT LOGIC ====== var intervalMilliseconds; function startTimer() { intervalMilliseconds = cb.settings.interval_minutes * 60 * 1000; cb.setTimeout(function repeatMessage() { cb.sendNotice( cb.settings.auto_message, "", // empty = send to public chat "#FF69B4", // message color "#000000", // background color "bold" ); cb.setTimeout(repeatMessage, intervalMilliseconds); }, intervalMilliseconds); } // Start when app loads startTimer();
© Copyright Chaturbate 2011- 2026. All Rights Reserved.