make rain with love
Author: tina_key
Description Source Code Launch Bot Current Users

Short Description:

Rain Love

Full Description

// Title:Rain Love
// Author: laylaloveu
// Original Script Authors:
// Version: 2.5 (02/07/2016)
// Description: Make it Rain with color in chat

cb.settings_choices = [
{name: 'min_tokens', type: 'int', minValue: 1, maxValue: 10000, defaultValue: 150, label: "Minimum Tips to make it rain"},
{name: 'rain_amount', type: 'int', minValue: 1, maxValue: 50, defaultValue: 25, label: "How Many Lines of Rain?"}
];

var total_tipped = 0;

var i;
cb.onTip(function (tip) {
total_tipped = parseInt(tip['amount']);
if(total_tipped >= cb.settings.min_tokens) {
cb.sendNotice(" " + tip['from_user'] + " made it rain! ", '', '#000000', '#00ff00', 'bolder');
for(i=0;i<cb.settings.rain_amount;i++) {
var dollars = Math.ceil(Math.random() * 21);
var msg = '';

while(dollars) {
msg += "";
dollars--;
}
cb.sendNotice(msg, '', '#000000', '#00ff00', 'bolder');
}
cb.sendNotice(tip['from_user'] + " Tipped " + total_tipped + " For This Rain!", '', '#000000', '#00ff00', 'bolder');
cb.sendNotice(" :thanks2 " + tip['from_user'] + " For Tipping :mclap :blowkiss", '', '#FFFFFF', '#ff0000', 'bolder');
cb.log(tip['from_user'] + " Tipped " + total_tipped);
}
});

function roomNotify() {
cb.sendNotice(" :rainingluv Tip " + cb.settings.min_tokens + " To Make It Rain :raintkn", '', '#FFFFFF', '#FF0000', 'bold');
cb.setTimeout(roomNotify, 900000)
}

function init() {
roomNotify();
}

init();

© Copyright Freesexcam 2011- 2024. All Rights Reserved.