Bots Home
|
Create an App
roller2
Author:
aety2
Description
Source Code
Launch Bot
Current Users
Created by:
Aety2
/** * A Bettter Dice Roller by aety * Version: 1.2.6 * Author: aety * Date: 2018-12-15 * Loosely based on work by: kingchris_, zingknaat, milo_bloom, tablesalt90 * more bot advertisement text length options and color customization options */ cb.settings_choices = [ {name: 'settings_section_label', type:'choice', label:'################# Basic Settings #################', required: false}, { name: 'tokens', type: 'int', minValue: 1, label: 'How much do you want to charge per roll?', defaultValue: 33 }, { name: 'notice_wait_time', type: 'choice', label: 'In minutes, how often should the bot advertise itself? (choosing 0 will never show the bot notices)', choice1: 0, choice2: 5, choice3: 10, choice4: 15, choice5: 20, choice6: 25, choice7: 30, choice8: 45, choice9: 60, choice10: 90, choice11: 120, defaultValue: 10 }, { name: 'blurb_size', type: 'choice', label: 'Use a smaller advertisement blurb? Basically this cuts out the bot name and some of the explanation from the bot notices to make it shorter.', choice1: 'Minimal Blurb', choice2: 'Short Blurb', choice3: 'Without "all" or Bot Name', choice4: 'Full Blurb', defaultValue: 'Full Blurb' }, { name: 'change_room_subject', type: 'choice', label: 'Change room subject when using this bot?', choice1: 'Yes', choice2: 'No', defaultValue: 'No' }, {name: 'multirolls_subsection_label', type:'choice', label:'######### Multi Rolls #########', required: false}, { name: 'max_rolls_at_once', type: 'int', minValue: 1, label: 'Maximum number of rolls that can be tipped for in a single tip.', defaultValue: 3 }, { name: 'perfect_multi', type: 'choice', label: 'Require exact multiples of tip amount to roll the die? (if you charge 33 per roll, 66 will roll 2x but 69 won\'t)', choice1: 'yes', choice2: 'no', defaultValue: 'yes' }, {name: 'prizeodds_subsection_label', type:'choice', label:'######### Prize Odds #########', required: false}, { name: 'equal_odds', type: 'choice', label: 'Should all non-rare prizes have equal odds of being rolled? ("no" simulates rolling a pair of dice and "yes" rolls a single die)', choice1: 'yes', choice2: 'no', defaultValue: 'no' }, { name: 'last_prize_rare', type: 'choice', label: 'Should the last prize in the list be RARE? (RARE prizes will only show up after a minimum number of rolls have been rolled and should be significantly less likely than other prizes)', choice1: 'yes', choice2: 'no', defaultValue: 'yes' }, { name: 'minimum_rolls', type: 'int', minValue: 0, label: 'Minimum number of rolls that must be rolled before RARE prizes can be won.', defaultValue: 10 }, { name: 'rare_chance_mult', type: 'choice', label: 'Multiplier for the chance of rolling rare prizes. Increase if rare prizes are too uncommon, Decrease if they\'re too common', choice1: '1/2x', choice2: '3/4x', choice3: '1x', choice4: '1.5x', choice5: '2x', choice6: '4x', choice7: '8x', defaultValue: '1x' }, {name: 'prize_section_label', type:'choice', label:'#################### Prizes ####################', required: false}, {name: 'prize_1', type: 'str', label: '(List possible prizes from most common to least.) Prize 1'}, {name: 'prize_2', type: 'str', label: '(if equal odds option is \'yes\' order doesn\'t matter.) Prize 2'}, {name: 'prize_3', type: 'str', label: '(Fill prize spots in order from top to bottom.) Prize 3', required: false}, {name: 'prize_4', type: 'str', label: '(Leave the remaining fields blank to not use them.) Prize 4', required: false} ]; // 25 because I got tired after uploading 25 gifs ;>_> // if someone wants to get in touch with me about updating/improving // or adding more dice gifs feel free to leave a comment etc // I *should* see it var maxPrizes = 25; for(var i=5; i <= maxPrizes; i++) { cb.settings_choices.push({ name: 'prize_' + i, type: 'str', label: 'Prize ' + i, required: false }); } // We're pushing these so that we can put them after the prizes that we want to push with a loop // there are better ways to deal with and organize this code cb.settings_choices.push({name: 'miscellaneous_section_label', type:'choice', label:'################ Advanced Settings ################', required: false}); cb.settings_choices.push({name: 'miscellaneous_section_desc_label', type:'choice', label:'##### (Safe to Ignore Everything Below this Point) #####', required: false}); cb.settings_choices.push({name: 'cmd_prefix', type: 'str', minLength: 1, maxLength: 1, label: 'Prefix for bot commands. (Might want to change if you have other bots using the same commands.)', defaultValue: '/'}); cb.settings_choices.push({name: 'die_prefix', type: 'str', label: 'Prefix for die gifs ("prefix#" only change if you know what you\'re doing. :80genericdie_1 through :80genericdie_25)', defaultValue: ':80genericdie_'}); cb.settings_choices.push({name: 'miscellaneous_section_colors_label', type:'choice', label:'#################### Colors ####################', required: false}); cb.settings_choices.push({name: 'miscellaneous_section_notice_label', type:'choice', label:'################ Notice ################', required: false}); cb.settings_choices.push({name: 'notice_fg_color', type: 'str', label: 'Bot advertisement text color (hex code for color make sure you include the # in front)', defaultValue: '#15A6B0', required: false}); cb.settings_choices.push({name: 'notice_bg_color', type: 'str', label: 'Bot advertisement background color (hex code for color make sure you include the # in front)', defaultValue: '', required: false}); cb.settings_choices.push({name: 'miscellaneous_section_prizes_label', type:'choice', label:'################ Prizes ################', required: false}); cb.settings_choices.push({name: 'prize_fg_color', type: 'str', label: 'Prize text color (hex code for color make sure you include the # in front)', defaultValue: '#067D00', required: false}); cb.settings_choices.push({name: 'prize_bg_color', type: 'str', label: 'Prize background color (hex code for color make sure you include the # in front)', defaultValue: '#D9FAD7', required: false}); cb.settings_choices.push({name: 'miscellaneous_section_rare_label', type:'choice', label:'############### Rare Prize ##############', required: false}); cb.settings_choices.push({name: 'rare_fg_color', type: 'str', label: 'Rare Prize text color (hex code for color make sure you include the # in front)', defaultValue: '#A805A6', required: false}); cb.settings_choices.push({name: 'rare_bg_color', type: 'str', label: 'Rare Prize background color (hex code for color make sure you include the # in front)', defaultValue: '#FFDBF3', required: false}); cb.settings_choices.push({name: 'miscellaneous_section_info_label', type:'choice', label:'############## Stats and Info ##############', required: false}); cb.settings_choices.push({name: 'miscellaneous_section_info_desc_label', type:'choice', label:'(prizes list, winners, and dice stats etc)', required: false}); cb.settings_choices.push({name: 'info_fg_color', type: 'str', label: 'Prizes and Stats text color (hex code for color make sure you include the # in front)', defaultValue: '#008596', required: false}); cb.settings_choices.push({name: 'info_bg_color', type: 'str', label: 'Prizes and Stats background color (hex code for color make sure you include the # in front)', defaultValue: '#DBFBFF', required: false}); cb.settings_choices.push({name: 'winners_fg_color', type: 'str', label: 'Winners text color (hex code for color make sure you include the # in front)', defaultValue: '#8A4900', required: false}); cb.settings_choices.push({name: 'winners_bg_color', type: 'str', label: 'Winners background color (hex code for color make sure you include the # in front)', defaultValue: '#FFF0DE', required: false}); var rollprice = parseInt(cb.settings.tokens); var prizeCount = 13; var equalOdds = cb.settings.equal_odds == 'yes'; var numberOfDie = equalOdds?1:2; var die = [ { die: 1, label: "One", sides: Math.floor((equalOdds? ((cb.settings.last_prize_rare == 'yes')?prizeCount-1:prizeCount) : ((cb.settings.last_prize_rare == 'yes')?prizeCount:prizeCount+1)/2)) }, { die: 2, label: "Two", sides: Math.ceil((equalOdds? ((cb.settings.last_prize_rare == 'yes')?prizeCount-1:prizeCount) : ((cb.settings.last_prize_rare == 'yes')?prizeCount:prizeCount+1)/2)) } ]; var perfectMults = cb.settings.perfect_multi == 'yes'; var maxRollsPerTip = parseInt(cb.settings.max_rolls_at_once); var usingRares = cb.settings.last_prize_rare == 'yes'; var minRollsForRare = parseInt(cb.settings.minimum_rolls); var rareChance = 1; // var rareChance = (cb.settings.rare_chance_mult == '1x')?1:((cb.settings.rare_chance_mult == '1/2x')?0.5:((cb.settings.rare_chance_mult == '1.5x')?1.5:(cb.settings.rare_chance_mult == '2x')?2:(cb.settings.rare_chance_mult == '4x')?4:8)); switch(cb.settings.rare_chance_mult) { case '1x': rareChance = 1; break; case '1/2x': rareChance = 0.5; break; case '3/4x': rareChance = 0.75; break; case '1.5x': rareChance = 1.5; break; case '2x': rareChance = 2; break; case '4x': rareChance = 4; break; case '8x': rareChance = 8; break; default: rareChance = 1; break; } var changeSubject = cb.settings.change_room_subject == 'Yes'; var cmdPrefix = cb.settings.cmd_prefix; var diePrefix = cb.settings.die_prefix; var notice_fg = cb.settings.fg_color; var notice_bg = cb.settings.bg_color; var lastRoller = '--'; var lastPrizeWon = '--'; var prizes = []; var stats = { 'tipCounter': 0, 'winners': [], 'rollCounter': 0, 'rollResultCounts': {} }; cb.onTip(function(tip) { var tipAmount = parseInt(tip.amount); stats.tipCounter += tipAmount; if(tipAmount >= rollprice && (!perfectMults || ((tipAmount <= (maxRollsPerTip*rollprice)) && (tipAmount % rollprice === 0)))) { var rolls = Math.floor(tipAmount/rollprice); for(var i = 0; i < rolls; i++) { roll(tip.from_user); lastRoller = tip.from_user; } } else { //not rolling the dice // var textColor = '#000000'; // var bgColor = '#D9FAD7'; cb.drawPanel(); } }); cb.onDrawPanel(function (user) { return { 'template': '3_rows_12_22_31', 'row1_label': 'Last prize won:', 'row1_value': lastPrizeWon, 'row2_label': 'Last player:', 'row2_value': lastRoller, 'row3_value': stats.tipCounter + ' ' + ((stats.tipCounter > 1)?'tokens':'token') + ' received / rolled ' + stats.rollCounter + ' time(s)' }; }); cb.onEnter(function (user) { adBlurb(user.user); }); cb.onMessage(function(msg) { var message = msg.m.split(" "); switch (message[0]) { case cmdPrefix+'dicehelp': msg["X-Spam"] = true; // Don't print command messages to chat. msg.background = "linear-gradient(to right, #CCCCCC, #FFFFFF)"; if(message[1] == 'all' && isPrivileged(msg))adBlurb(); else adBlurb(msg.user); break; case cmdPrefix+'winners': msg["X-Spam"] = true; msg.background = "linear-gradient(to right, #CCCCCC, #FFFFFF)"; if(message[1] == 'all' && isPrivileged(msg))winnersBlurb(); else winnersBlurb(msg.user); break; case cmdPrefix+'prizes': msg["X-Spam"] = true; msg.background = "linear-gradient(to right, #CCCCCC, #FFFFFF)"; if(message[1] == 'all' && isPrivileged(msg))prizesBlurb(); else prizesBlurb(msg.user); break; case cmdPrefix+'dicestats': msg["X-Spam"] = true; msg.background = "linear-gradient(to right, #CCCCCC, #FFFFFF)"; if(message[1] == 'all' && isPrivileged(msg))statsBlurb(); else statsBlurb(msg.user); break; default: break; } return msg; }); function getRandomIntInclusive(min, max) { min = Math.ceil(min); max = Math.floor(max); return Math.floor(Math.random() * (max - min + 1)) + min; } function isPrivileged(msg) { return (msg.is_mod === true) || (msg.user == cb.room_slug); } function roll(username) { var prize = 'A Thank You!'; stats.rollCounter += 1; var dieResults = []; var total = -numberOfDie; for(var i = 0; i < numberOfDie; i++) { dieResults[i] = getRandomIntInclusive(1, die[i].sides); total += dieResults[i]; } if(usingRares && (stats.rollCounter > minRollsForRare) && (getRandomIntInclusive(1, 100) <= rareChance)) { //RARE PRIZE WON!!! if(numberOfDie == 1) { dieResults[0] = die[0].sides+1; total = dieResults[0] - numberOfDie; } else { if(getRandomIntInclusive(0,1) === 0) { dieResults[0] = die[0].sides+1; dieResults[1] = die[1].sides; total = dieResults[0] + dieResults[1] - numberOfDie; } else { dieResults[0] = die[0].sides; dieResults[1] = die[1].sides+1; total = dieResults[0] + dieResults[1] - numberOfDie; } } } var winner = false; if (total >= 0 && total < prizeCount) { if((total+numberOfDie) in stats.rollResultCounts)stats.rollResultCounts[(total+numberOfDie)] += 1; else stats.rollResultCounts[(total+numberOfDie)] = 1; winner = true; prize = prizes[total]; } else { winner = false; } var msg = ((numberOfDie == 1)?diePrefix + dieResults[0]: diePrefix + dieResults[0] + " " + diePrefix + dieResults[1]) + "\n"; msg += username + " rolled " + (total+numberOfDie) + "! \n".toUpperCase(); msg += "Roll #" + stats.rollCounter + " | Prize: " + prize; var textColor = '#000000'; var bgColor = cb.settings.prize_bg_color; // '#D9FAD7'; if (winner) textColor = cb.settings.prize_fg_color; // '#067D00'; if (total == prizeCount-1) { bgColor = cb.settings.rare_bg_color; // '#FFDBF3'; textColor = cb.settings.rare_fg_color; // '#A805A6'; } cb.sendNotice(msg, '', bgColor, textColor, 'bold'); lastPrizeWon = prize; stats.winners.push("Roll #" + stats.rollCounter + " (" + (total+numberOfDie) + "): " + username + " - " + prize); if(stats.winners.length > 20)stats.winners = stats.winners.slice(-21); cb.drawPanel(); } function initPrizes() { for (var i = 1; i <= maxPrizes; i++) { if(!('prize_' + i in cb.settings) || cb.settings['prize_' + i] === '' || cb.settings['prize_' + i] == '.' || cb.settings['prize_' + i] == ' ')continue; if(i%2 == 1)prizes.push(cb.settings['prize_' + i]); else prizes.unshift(cb.settings['prize_' + i]); } prizeCount = prizes.length; if(usingRares) { if(prizeCount%2 === 0)prizes.push(prizes.shift()); prizes[prizes.length-1] += " (RARE)"; } for(var i = 0; i < prizeCount; i++) { stats.rollResultCounts[(i+numberOfDie)] = 0; } die[0].sides = Math.floor(((numberOfDie == 1)? ((cb.settings.last_prize_rare == 'yes')?prizeCount-1:prizeCount) : ((cb.settings.last_prize_rare == 'yes')?prizeCount:prizeCount+1)/2)); die[1].sides = Math.ceil(((numberOfDie == 1)? ((cb.settings.last_prize_rare == 'yes')?prizeCount-1:prizeCount) : ((cb.settings.last_prize_rare == 'yes')?prizeCount:prizeCount+1)/2)); // basically this is +2 because only using +1 for unequal dice odds made the rare prize feel too close in likelyhood by default to just one of the least likely prizes rareChance *= equalOdds?100/(prizeCount*1.35):100/((die[0].sides+2)*die[1].sides); cb.log(rareChance); } function statsBlurb(username) { var msg = "##### Dice Roll Statistics #####\n"; for(var rollval in stats.rollResultCounts) { msg += "Roll " + rollval + ": " + stats.rollResultCounts[rollval] + "\n"; } msg += "Total Rolls: " + stats.rollCounter; cb.sendNotice(msg, username, cb.settings.info_bg_color, cb.settings.info_fg_color, 'bold'); // '#DBFBFF', '#008596' } function prizesBlurb(username) { var msg = "No Prizes!! D:"; if (prizes.length) { msg = "##### POSSIBLE PRIZES #####"; for (var i = 0; i < prizeCount; i++) { msg += "\nRoll " + (i+numberOfDie) + " - " + prizes[i]; } } cb.sendNotice(msg, username, cb.settings.info_bg_color, cb.settings.info_fg_color, 'bold'); // '#DBFBFF', '#008596' } function winnersBlurb(username) { var msg = "##### LAST 20 WINNERS #####"; msg += "\nList sorted in chronological order"; if (stats.winners.length === 0) { cb.sendNotice('No one has won anything yet. Roll the dice to win a prize!', username, '', '', 'bold'); } else { var recentWinners = stats.winners.slice(-21); for (var i = 0; i < recentWinners.length; i++) msg += "\n" + recentWinners[i]; cb.sendNotice(msg, username, cb.settings.winners_bg_color, cb.settings.winners_fg_color, 'bold'); // '#FFF0DE', '#8A4900' } } function adBlurb(username) { var msg = ""; switch(cb.settings.blurb_size) { case 'Without "all" or Bot Name': msg += "Tip " + rollprice + " " + ((rollprice>1)?'tokens':'token') + " to roll the dice. "; msg += "There are " + prizes.length + " possible prizes.\n"; if(maxRollsPerTip>1) { msg += "You can roll up to " + maxRollsPerTip + " times with a single tip (" + (maxRollsPerTip*rollprice) + " tokens).\n"; if(perfectMults && rollprice>1) msg += "You must tip exact amounts to roll the dice.\n(1 roll for " + rollprice + " tokens, 2 for " + rollprice*2 + " tokens, but " + Math.ceil(rollprice*1.5) + " tokens won't roll the dice).\n"; } msg += "Type "+cmdPrefix+"prizes to see the list of prizes. \n"; msg += "Type "+cmdPrefix+"winners to see a list of the last 20 winners."; break; case 'Short Blurb': msg += "Tip " + rollprice + " " + ((rollprice>1)?'tokens':'token') + " to roll the dice. "; msg += "There are " + prizes.length + " possible prizes.\n"; if(maxRollsPerTip>1) { msg += "You can roll up to " + maxRollsPerTip + " times with a single tip (" + (maxRollsPerTip*rollprice) + " tokens).\n"; if(perfectMults && rollprice>1) msg += "You must tip exact amounts to roll the dice.\n"; } msg += "Type "+cmdPrefix+"prizes to see the list of prizes. \n"; msg += "Type "+cmdPrefix+"winners to see a list of the last 20 winners."; break; case 'Minimal Blurb': msg += "Tip " + rollprice + " " + ((rollprice>1)?'tokens':'token') + " to roll the dice. "; break; case 'Full Blurb': default: msg += "A Bettter Dice Roller by aety.\n"; msg += (username)?"(Loosely based on work by: kingchris_, zingknaat, milo_bloom, tablesalt90.)\n":""; msg += "Tip " + rollprice + " " + ((rollprice>1)?'tokens':'token') + " to roll the dice. "; msg += "There are " + prizes.length + " possible prizes.\n"; if(maxRollsPerTip>1) { msg += "You can roll up to " + maxRollsPerTip + " times with a single tip (" + (maxRollsPerTip*rollprice) + " tokens).\n"; if(perfectMults && rollprice>1) msg += "You must tip exact amounts to roll the dice.\n(1 roll for " + rollprice + " tokens, 2 for " + rollprice*2 + " tokens, but " + Math.ceil(rollprice*1.5) + " tokens won't roll the dice).\n"; } msg += "Type "+cmdPrefix+"prizes to see the list of prizes. \n"; msg += "Type "+cmdPrefix+"prizes all to send the list to all viewers if you're a mod or the broadcaster.\n"; msg += "Type "+cmdPrefix+"winners to see a list of the last 20 winners."; break; } cb.sendNotice(msg, username, notice_bg, notice_fg, 'bold'); } function advertise() { adBlurb(); if(cb.settings.notice_wait_time > 0)cb.setTimeout(advertise, parseInt(cb.settings.notice_wait_time) * 60000); } function init() { initPrizes(); advertise(); if (changeSubject) { cb.changeRoomSubject('Tip ' + rollprice + ' ' + ((rollprice>1)?'tokens':'token') + ' to roll the dice and win a prize!'); } } init();
© Copyright Chaturbate 2011- 2024. All Rights Reserved.