Bots Home
|
Create an App
Spot Username
Author:
atreyue8
Description
Source Code
Launch Bot
Current Users
Created by:
Atreyue8
/* * Title: Spot Username by Atreyue8 * Author: Atreyue8 * Version: 1.0 (11/23/2014) Summary: Identify a specific username and notify their entry in the room to the broadcaster (only) TODO: * Update to include multiple usernames * Update to allow moderator notification (optional) */ cb.settings_choices = [ { name: 'Username', type: 'str', minLength: 1, maxLength: 255, defaultValue: "None", label: "Username" } ]; cb.onEnter( function ( user ) { var st = user['user']; // if( user['user'] == cb.settings.Username ) if( st.search(cb.settings.Username) != -1) { var str = user['user'] + ' has entered the Room!'; cb.chatNotice(str, cb.room_slug, "", '#FF6600', 'bolder'); }; } );
© Copyright Chaturbate 2011- 2026. All Rights Reserved.