Bots Home
|
Create an App
AnaBot
Author:
countytime
Description
Source Code
Launch Bot
Current Users
Created by:
Countytime
/* * Ana's Room Bot v1.02 * * by countytime * * * ****************************************************** */ /* colors **************/ var color = { purple : '#aa00aa', green : '#00aa00', mint : '#eeffee', red : '#660000', lightred : '#aa0000', teal : '#009999', orange : "#ff6600", white : '#ffffff', black : '#000000', gold : '#FF9900', bg_king : "#ffcece", bg_pink : "#ffeeee", bg_mint : '#eeffee', }; var style = { bold : "bold", normal : "normal", }; var spanish_regex = new RegExp("hola|buenos|por favor|habla|hermosa|bonita|estas|gracias|bien|cuesta|quiero", "i"); cb.settings_choices = [ {name: 'spanish_detected_msg_color', type: 'str', minLength: 3, maxLength: 7, defaultValue: "#660000", label: "Spanish-detected message color.\nModerators, fan club members, and you can talk Spanish without getting a warning."}, ]; cb.onMessage(function (msg) { var isowner = msg.user == cb.room_slug; var isok = msg['in_fanclub'] || msg['is_mod'] || isowner; var isgrey = (!msg['has_tokens'] && !msg['in_fanclub'] && !msg['is_mod'] && !isowner); if (!isok) { if (msg['m'].match(spanish_regex)) { RoomMessage("English please, " + msg['user'] + "! You get one warning.", cb.settings.spanish_detected_msg_color); } } return msg; }); /* custom functions ******************************************/ function do_flip(user) { var face = Math.floor(Math.random()*2) ? "heads" : "tails"; RoomMessage(user+" flips a coin. It comes up "+face+"."); } function RoomMessage(msg, clr, bgcolor, weight) { bgcolor = bgcolor || color.white; // this doodad lets us have defaults clr = clr || color.black; weight = weight || style.bold; cb.sendNotice(msg, '', bgcolor, clr, weight); } function tellUser(msg, user, clr, bgcolor, weight) { if (!user) return; bgcolor = bgcolor || color.white; // this doodad lets us have defaults clr = clr || color.black; weight = weight || style.bold; cb.sendNotice(msg, user, bgcolor, color, weight); }
© Copyright Chaturbate 2011- 2026. All Rights Reserved.