Bots Home
|
Create an App
Display Message
Author:
ashleyt925
Description
Source Code
Launch Bot
Current Users
Created by:
Ashleyt925
/******************************* * Bot: Display Message * Version: 0.1 * Author: AshleyT925 * Date: 6-7-2017 *******************************/ cb.settings_choices = [ { name: 'message', type: 'str', label: 'What is your message? ', }, { name: 'wait_time', type: 'choice', label: 'In minutes, how often should the bot advertise itself?', choice1: 5, choice2: 10, choice3: 15, choice4: 20, choice5: 25, choice6: 30, choice7: 45, choice8: 60, defaultValue: 10 }, { name: 'tip_message', type: 'str', label: 'Message to Tippers' } ]; cb.onTip(function (tip) { var msg = ""; msg += cb.settings.tip_message; cb.chatNotice(msg, 'from_user', '', '#15A6B0', 'bold'); }); function Advertise() { ad(); cb.setTimeout(Advertise, parseInt(cb.settings.wait_time) * 60000); } function ad(username) { var msg = ""; msg += cb.settings.message; cb.sendNotice(msg, username, '', '#15A6B0', 'bold'); } function init() { Advertise(); } init();
© Copyright Chaturbate 2011- 2024. All Rights Reserved.