Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var config = {
- scriptTitle: {
- label: 'You need to have an account HERE TO USE THIS SCRIPT: https://www.notokyc.com/go/bcgame \n //////// Script by https://www.notokyc.com | Check out for more NO KYC Crypto Casinos and Scripts! \\\\\\\\',
- type: 'title'
- },
- baseBet: {
- label: 'Base Bet',
- value: 10 * currency.minAmount, // Updated this line
- type: 'number'
- },
- startingChance: {
- label: 'Starting Chance',
- value: 0.1,
- type: 'number'
- },
- }
- var chance = config.startingChance.value;
- var currentPayout = ((1/chance)*99);
- var losecount = 0;
- var betcount = 0;
- var varix = 1.025;
- var previousBet = currentBet;
- var runningbalance = currency.amount;
- var originalbalance = currency.amount;
- var baseBet = config.baseBet.value;
- var currentBet = baseBet;
- function main () {
- game.onBet = function () {
- game.bet(currentBet, currentPayout).then(function(payout) {
- runningbalance -= currentBet;
- previousBet = currentBet;
- betcount += (1);
- if (payout > 1) {
- var netwin = currentBet * currentPayout;
- runningbalance += netwin;
- currentBet = baseBet;
- losecount = 0;
- chance = 0.1;
- varix = 1.025;
- } else {
- if (losecount >= 190) {
- varix = 1.05;
- }
- if (losecount >= 260) {
- varix = 1.066;
- }
- losecount += (1);
- currentBet = (previousBet * varix);
- chance += (0.01);
- }
- currentPayout = ((1/chance)*99);
- if (betcount % 100 == 0) {
- logSummary();
- }
- log.info('Betting: ' + currentBet.toFixed(7) + ' ' + ' X ' + ' ' + currentPayout.toFixed(2));
- });
- }
- }
- function logSummary() {
- var netNumber = runningbalance - originalbalance;
- var netPecentage = (netNumber / originalbalance) * 100;
- if (originalbalance < runningbalance) {
- log.success('Total Profit: ' + netNumber.toFixed(7) + '(' + netPecentage.toFixed(2) + '%)');
- } else {
- log.error('Total Profit: ' + netNumber.toFixed(7) + '(' + netPecentage.toFixed(2) + '%)');
- }
- }
Advertisement
Comments
-
- https://www.notokyc.com | Check out for more NO KYC Crypto Casinos and Scripts!
Add Comment
Please, Sign In to add comment