Bots Home
|
Create an App
MadiSecretShow99
Author:
inmy1
Description
Source Code
Launch Bot
Current Users
Created by:
Inmy1
cb.settings_choices = [ {name : 'MinToJoin', type : 'int', minValue : 0, maxValue : 1000, defaultValue : 50, label : "Cost to Watch the Secret Show (the one in progress or the next one)."} ]; var BlackScreen = 'A Secret Show is in progress ! Tip at least ' + cb.settings.MinToJoin + ' to join !'; var noticeFrequency = 5; // Time beetween automatic app advertises (in minutes). //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ cb.onTip(function(tip) { var UserName = tip['from_user']; var TipAmount = parseInt(tip['amount'], 10); if ((!cbjs.arrayContains(cb.limitCam_allUsersWithAccess(), UserName)) && (TipAmount >= cb.settings.MinToJoin)) cb.limitCam_addUsers([UserName]); }); //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ cb.onMessage(function(msg) { var message = msg['m']; var user = msg['user']; if (message[0] == '/') { msg['X-Spam'] = true; // afin de ne pas afficher les commandes if (cb.room_slug === user) { if ((message == '/on') && (!cb.limitCam_isRunning())) // le Show Secret dĂ©marre cb.limitCam_start(cb.settings.BlackScreen); if ((message == '/off') && (cb.limitCam_isRunning())) // le Show Secret s'arrĂȘte { cb.limitCam_stop(); cb.limitCam_removeAllUsers(); } } } return msg; }); //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ function advertise() { showAppAd(); cb.setTimeout(advertise, noticeFrequency * 60000); } //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ function showAppAd(username) { var message = ""; message += "At any moment, the broadcaster may start a Secret Show. \n"; message += "When a Secret Show is in progress, your screen turns black "; message += "with a message informing that a Secret Show has started. \n\n"; message += "You wont have that black screen if you've sent at least " + cb.settings.MinToJoin + " "; message += "Tokens in a Single Tip after the end of the last Secret Show. \n"; message += "If your screen goes black, you can join the Secret Show by "; message += "sending at least " + cb.settings.MinToJoin + " Tokens in a Single Tip."; cb.sendNotice(message , username, '', '#BD5B03', 'bold'); } //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ function init() { advertise(); } //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ init();
© Copyright Chaturbate 2011- 2024. All Rights Reserved.