Bots Home
|
Create an App
The Christian McGregor Show Bot
Author:
thechristianmcgregorshow
Description
Source Code
Launch Bot
Current Users
Created by:
Thechristianmcgregorshow
/* Enter Message */ cb.onEnter(function(user) { cb.sendNotice('Welcome to The Christian McGregor Show, ' + user['user'] + '! I will do my best not to bore you to death. Hang out and enjoy yourself! ', '#DC5500', '', 'bold'); }); /* Exit Message */ cb.onLeave(function(user) { cb.sendNotice('Where the fuck do you think youre going, ' + user['user'] + '? lol ', '#DC5500', '', 'bold'); }); /* Tip Thank You */ cb.settings_choices = [ { name: 'tipamount', type: 'int', minValue: 1, defaultValue: 1, label: 'Minimum tokens required for a thank you message' } , { name: 'tipmsg', type: 'str', minLength: 8, maxLength: 128, defaultValue: ' Thank you [tipper] for tipping! You are fucking awesome! ', label: "Tip thank you message, [tipper] = tipper's name" } ]; cb.onTip(function (tip) { if (parseInt(tip['amount']) >= cb.settings.tipamount) { tipper = tip['from_user']; tipmsg=cb.settings.tipmsg; tipmsg = tipmsg.replace("[tipper]", tipper); cb.chatNotice(tipmsg, tipper); } }); function init() { } init();
© Copyright Chaturbate 2011- 2026. All Rights Reserved.