Bots Home
|
Create an App
Filters unknow lettering
Author:
androgyne1983
Description
Source Code
Launch Bot
Current Users
Created by:
Androgyne1983
// Spam unknow lettering // mofidication by Andro for Ben's Room // Author: CrazyCharlie cb.settings_choices = [ {name: 'warningLang', type: 'str', minLength:1, maxLength:255, defaultValue: "Use only English in this room.", label: "Display as a warning to users of unknow lettering."} ]; cb.onMessage(function(msg){ //Aborts function, doesn't filter broadcaster or mods if(msg.user == cb.room_slug || msg.is_mod) return msg; for(var i = 0; i < msg['m'].length; i++){ if(msg['m'].charCodeAt(i) >= 1425 && msg['m'].charCodeAt(i) <= 1919){ msg['X-Spam'] = true; msg['m'] = "(removed)\n"; cb.chatNotice(cb.settings.warningLang, msg['user']); break; } } return msg; });
© Copyright Chaturbate 2011- 2026. All Rights Reserved.