Advertisement
coinwalk

awesomeforever

Feb 26th, 2020
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. bethigh = false
  2. good = 100000
  3. prebet = balance/5120000
  4. nextbet = prebet
  5. box = 0
  6. min = 49.95
  7. cox = 49
  8. chance = cox
  9. function dobet()
  10. if win then
  11. chance = cox
  12. nextbet = prebet
  13. bethigh = false
  14. end
  15. if (chance==min) and !win then
  16. nextbet = previousbet*(math.random(200,300)/100)
  17. end
  18. if lastBet.Roll < min then
  19. box+=1
  20. end
  21. if lastBet.Roll > min then
  22. box = 0
  23. end
  24. if (chance == cox) and box >= 10 then
  25. chance = min
  26. nextbet = balance/51200
  27. box = 0
  28. end
  29. if balance > good then
  30. stop()
  31. end
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement