Bots Home
|
Create an App
ICum
Author:
dikitain
Description
Source Code
Launch Bot
Current Users
Created by:
Dikitain
/* Title: "ICum" bot Author: dikitain Version: 1.0 (10/13/2022) A bot that keeps track of how many times the model and viewers have cum. Simply type "/icum" and the bot will do the rest! */ var modelCum=0; var viewerCum=0; function whoCum() { var msg = 'I have cum ' + modelCum + ' time(s) during this stream and have ' + 'made my viewers cum ' + viewerCum + ' time(s). Did I make you cum? ' + 'Type "/icum" to let me know!'; cb.sendNotice(msg,'','',cb.settings['msgcolor'],'bold'); cb.setTimeout(whoCum, 60000); } cb.setTimeout(whoCum, 60000); cb.onMessage(function (msg){ if (msg['m'] == '/icum') { msg['X-Spam'] = true; if (msg['user'] == cb.room_slug){ ++modelCum; cb.chatNotice(cb.room_slug + ' just came! Current count is ' + modelCum + '.'); }else{ ++viewerCum; cb.chatNotice('You just made ' + msg['user'] + ' cum! That is ' + viewerCum + ' time(s) you have made your viewers cum. ', cb.room_slug); } } return msg; }); function init() { } init();
© Copyright Chaturbate 2011- 2026. All Rights Reserved.