NoToKYC

Dice Gambling Script | NoToKYC.COM

Sep 17th, 2023
5,396
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 2.41 KB | Cryptocurrency | 0 0
  1. var config = {
  2. scriptTitle: {
  3. 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! \\\\\\\\',
  4. type: 'title'
  5. },
  6.     baseBet: {
  7.         label: 'Base Bet',
  8.         value: 10 * currency.minAmount,  // Updated this line
  9.         type: 'number'
  10.     },
  11.     startingChance: {
  12.         label: 'Starting Chance',
  13.         value: 0.1,
  14.         type: 'number'
  15.     },
  16. }
  17.  
  18. var chance = config.startingChance.value;
  19. var currentPayout = ((1/chance)*99);
  20.  
  21. var losecount = 0;
  22. var betcount = 0;
  23. var varix = 1.025;
  24.  
  25. var previousBet = currentBet;
  26.  
  27. var runningbalance = currency.amount;
  28. var originalbalance = currency.amount;
  29. var baseBet = config.baseBet.value;
  30. var currentBet = baseBet;
  31.  
  32. function main () {
  33.     game.onBet = function () {
  34.         game.bet(currentBet, currentPayout).then(function(payout) {
  35.             runningbalance -= currentBet;
  36.             previousBet = currentBet;
  37.             betcount += (1);
  38.            
  39.             if (payout > 1) {
  40.                 var netwin = currentBet * currentPayout;
  41.                 runningbalance += netwin;
  42.                
  43.                 currentBet = baseBet;
  44.                 losecount = 0;
  45.                 chance = 0.1;
  46.                 varix = 1.025;
  47.            
  48.             } else {
  49.                
  50.                 if (losecount >= 190) {
  51.                     varix = 1.05;
  52.                 }
  53.                 if (losecount >= 260) {
  54.                     varix = 1.066;
  55.                 }
  56.  
  57.                 losecount += (1);
  58.                 currentBet = (previousBet * varix);
  59.  
  60.                 chance += (0.01);
  61.  
  62.             }
  63.  
  64.             currentPayout = ((1/chance)*99);
  65.  
  66.             if (betcount % 100 == 0) {
  67.                 logSummary();
  68.             }
  69.            
  70.             log.info('Betting: ' + currentBet.toFixed(7) + ' ' + ' X ' + ' ' + currentPayout.toFixed(2));
  71.         });
  72.     }
  73. }
  74.  
  75. function logSummary() {
  76.     var netNumber = runningbalance - originalbalance;
  77.     var netPecentage = (netNumber / originalbalance) * 100;
  78.    
  79.     if (originalbalance < runningbalance) {
  80.         log.success('Total Profit: ' + netNumber.toFixed(7) + '(' + netPecentage.toFixed(2) + '%)');
  81.     } else {
  82.         log.error('Total Profit: ' + netNumber.toFixed(7) + '(' + netPecentage.toFixed(2) + '%)');
  83.     }
  84. }
  85.  
  86.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment