kd8lvt

currency options for super toast bot

Feb 9th, 2017
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const currencyOpts = {
  2.     name: "crumb", //Used in the currency commands :) Make sure it doesn't end with an 's' / isn't plural
  3.     paycheck: 5, //How much to add to your viewer's account every *delay* miliseconds
  4.     delay: 300000, //This is the delay **IN MILISECONDS** between adding *paycheck* currency to your viewer's accounts.
  5.     bankHeistOpts = {
  6.         multiplierSuccess: 2, //Multiplier to those in the "success" event
  7.         multiplierCasualties: 1.5, //Multiplier to those who survive in the "casualties" event
  8.         waitTime: 300000, //Time between heists (not when one is in the "join" state though) In miliseconds
  9.         joinTime: 60000, //Time to wait for people to join. Resets every time a new person joins In miliseconds
  10.         chanceSucess: 30, //Base chance (in percent) for the "success" event to fire. This has priority.
  11.         chanceCasualties: 35 //Base chance (in percent) for the "casualties" event to fire. Has priority over failing
  12.         //Failing only happens if neither the "success" or "casualties" event occurs, and kills EVERYONE.
  13.         bankName: "The Big Toaster", //These are self-explanitory
  14.         heistMessageStarting: "Check your guns, and ready your scraper, it's time to raid "+currencyOpts.bankHeistOpts.bankName+"!:",
  15.         heistMessageSuccess: "It was a huge success! Everyone got their share of "+currencyOpts.name+"s! Here's how you made out:",
  16.         heistMessageCasualties: "Some people died along the way, and you had to leave some "+currencyOpts.name+" behind, but those who survive got their share.",
  17.         heistMessageFail: "It was a disaster! There was a SWAT team waiting for you, and you all died. Oh well.",
  18.         heistMessageSingleSuccess: /*TODO: put in username of person */ " snuck in through the back entrance of "+currencyOpts.bankHeistOpts.bankName+" and made off with quote the haul! Here's how you made out:",
  19.         heistMessageSingleFail: /*TODO: put in username of person */ " walked through the front entrance like a doofus and got shot immediately. Good job :P"
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment