Advertisement
Guest User

Nekozzzzzzzzzzzzz

a guest
Aug 18th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1.  
  2. /*¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯|
  3. // Martingale Bot
  4. //___________________________________________________________________|
  5. //
  6. //
  7. */
  8.  
  9. var BaseBet = 5000000;
  10. AutoCashout = 6.5, //
  11. IncreaseOnLoss = 1; //
  12. secureStreak = 13; //
  13.  
  14. // Edit ^over^ this line —------------------
  15.  
  16. var streaks = 0;
  17. var bet = 0;
  18. var lastBet = 0;
  19. engine.on('game_starting', function(info) {
  20. if(engine.lastGamePlay() == "LOST") bet = lastBet * IncreaseOnLoss;
  21. else bet = BaseBet;
  22. if(streaks>=secureStreak) engine.placeBet(Math.round(bet)*100, Math.round(AutoCashout*100), function(){ });
  23. lastBet = bet;
  24. });
  25.  
  26. engine.on('game_crash', function(data) {
  27. if(data.game_crash/100>=AutoCashout){
  28. streaks = 0;
  29. }else{
  30. streaks++;
  31. }
  32.  
  33. console.log("Crashed at x"+(data.game_crash/100)+", "+(secureStreak-(streaks>secureStreak?secureStreak:streaks))+" streaks left");
  34. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement