Advertisement
coinwalk

yoyoyoyo

Feb 29th, 2020
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. bethigh = true
  2. good = 10000
  3. prebet = 0
  4. nextbet = prebet
  5. box = 0
  6. min = 65
  7. cox = 65.01
  8. chance = cox
  9. function dobet()
  10. if win then
  11. chance = cox
  12. nextbet = prebet
  13. bethigh = true
  14. else
  15. nextbet = previousbet*3
  16. end
  17. if lastBet.Roll < 34.5 then
  18. box+=1
  19. end
  20. if lastBet.Roll > 35 then
  21. box = 0
  22. end
  23. if (chance == cox) and box >= 5 then
  24. chance = min
  25. nextbet = balance/729
  26. box = 0
  27. end
  28. if balance > good then
  29. stop()
  30. end
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement