Bots Home
|
Create an App
dombotness
Author:
sexyhungmasterofkink
Description
Source Code
Launch Bot
Current Users
Created by:
Sexyhungmasterofkink
// DomBot v1 - Master/Daddy Themed Interaction Bot for Chaturbate cb.settings_choices = [ {name: 'greeting', type: 'str', minLength: 1, maxLength: 100, label: 'Custom Greeting', defaultValue: 'Welcome, my loyal subjects!'}, {name: 'nickname', type: 'str', minLength: 1, maxLength: 50, label: 'Nickname (e.g., Master or Daddy)', defaultValue: 'Master'}, {name: 'creative_message', type: 'str', minLength: 1, maxLength: 255, label: 'Creative Prompt Message', defaultValue: 'What will you do for me?'} ]; // List of submissive commands that will trigger a response const submissiveCommands = [ "kneel before", "show respect to", "serve", "obey", "compliment", "admire", "praise" ]; // Variable to track creative mode status let creativeModeEnabled = false; // Function to handle greeting users on room entry cb.onEnter(function(user) { const greetingMessage = `${cb.settings.nickname} welcomes ${user['user']}! ${cb.settings.greeting}`; cb.chatNotice(greetingMessage, user['user']); }); // Function to handle incoming messages and respond based on keywords cb.onMessage(function(msg) { const messageText = msg['m'].toLowerCase(); // Check if the message contains any submissive command keyword submissiveCommands.forEach(function(command) { if (messageText.includes(command)) { cb.chatNotice(`Yes, ${cb.settings.nickname} commands you to ${command} now!`); } }); // Handle creative mode commands if (messageText === "/creative" && !creativeModeEnabled) { creativeModeEnabled = true; cb.chatNotice(`${cb.settings.nickname} says: ${cb.settings.creative_message}`, msg['user']); } else if (messageText === "/endcreative" && creativeModeEnabled) { creativeModeEnabled = false; cb.chatNotice("Creative mode has been ended."); } return msg; // Ensure the original message is displayed in chat }); // Initialization message cb.onStart(function() { cb.chatNotice("DomBot v1 for Master/Daddy has started! Type '/creative' to engage in creative mode."); });
© Copyright Chaturbate 2011- 2026. All Rights Reserved.