Advertisement
Sourjoke

Untitled

Jan 28th, 2020
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. const betAmount = 1; //Amount of bits to bet
  2. const minSkips = 15; //Minimum amount of skips in a row
  3. const maxMultiplier = 4; //Anything above this resets the counter
  4. let skip = 1000
  5. var rowCount = 0;
  6. var engine = this
  7. while (rowCount < minSkips)
  8. {
  9. let result = await analyzeBet();
  10. rowCount++;
  11. if(result.multiplier >= maxMultiplier)
  12. rowCount = 0;
  13. this.log('Multi: ' + result.multiplier + ' - # ' + rowCount);
  14. }
  15. async function analyzeBet() {
  16. if (skip == 1) {
  17. skip = 0
  18. return await engine.skip(100, 1.01)
  19. } else {
  20. skip = 1
  21. return await engine.bet(100, 1.01)
  22. }
  23. }
  24. //skip till you find 30 games under 4x
  25. //and then you run the Script Number 2.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement