Bots Home
|
Create an App
block_long_messages
Author:
frits
Description
Source Code
Launch Bot
Current Users
Created by:
Frits
cb.settings_choices = [ { name: 'message', type: 'str', minLength: 1, maxLength: 999999, label: 'Message to replace blocked message with: ', default: 'Kick me Please!' }, { name: 'chars', type: 'int', minValue: 1, maxValue: 999999, label: 'Maximum number of characters: ', default: 300 } ]; const maxLength = cb.settings.chars; const altMsg = cb.settings.message; function readMsg(msg) { let msgString = msg['m']; if (msgString.length > maxLength && !(msg['is_mod'] || msg['user'] === cb.room_slug)) { return changeMsg(msg); } else { return msg; } }; function changeMsg(msg) { msg['m'] = altMsg; return msg; }; cb.onMessage((msg) => readMsg(msg));
© Copyright Chaturbate 2011- 2024. All Rights Reserved.