MartinBot

Oscillator Bot

Nov 10th, 2016
1,438
0
Never
8
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. /***************
  2.  
  3. BaB Oscillator Bot
  4. By MartinG
  5. Version 2.0
  6.  
  7. base_bet: Bets will range from 1 bit to base_bet * 2 bits
  8. oscillation_length: The number of bets to make in one cycle
  9. cashout: Where to cashout
  10.  
  11. ****************/
  12.  
  13. var base_bet = 100;
  14. var oscillation_length = 50;
  15.  
  16. var cashout = 1.03;
  17.  
  18. /***************/
  19.  
  20. cashout = Math.round(cashout * 100);
  21.  
  22. var i = 0;
  23. var counter = 0;
  24. var increase = Math.PI * 2 / oscillation_length;
  25.  
  26. function next() {
  27. i++;
  28. if(i > oscillation_length) i=0;
  29.  
  30. var y = Math.sin(counter) * base_bet + base_bet + 1;
  31. counter += increase;
  32. return Math.floor(y) * 100;
  33. }
  34.  
  35. engine.on('game_starting', function(info) {
  36. var bet = next();
  37. console.log("Betting " + bet/100);
  38. engine.placeBet(bet, cashout);
  39. });
Advertisement
Comments
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • Lertolix
    87 days
    # CSS 0.85 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
  • Fextotor
    80 days
    # CSS 0.06 KB | 0 0
    1. We just shared HQ data on our channel: https://t.me/theprotocolone
Add Comment
Please, Sign In to add comment