Advertisement
coinwalk

for 99 sat on 999dice

Mar 11th, 2020
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. bethigh = true
  2. good = 1
  3. prebet = 0
  4. nextbet = prebet
  5. box = 0
  6. min = 49.95
  7. cox = 49
  8. chance = cox
  9. bit = 0
  10. max = 50.5
  11. function dobet()
  12. if win then
  13. chance = cox
  14. nextbet = prebet
  15. bethigh = true
  16. end
  17. if (chance==min) and !win then
  18. nextbet = previousbet*2.5
  19. end
  20. if lastBet.Roll > min then
  21. box += 1
  22. bit = 0
  23. end
  24. if lastBet.Roll < max then
  25. bit += 1
  26. box = 0
  27. end
  28. if (chance == cox) and (bit==8) then
  29. bethigh = true
  30. nextbet = balance/72
  31. chance = min
  32. bit = 0
  33. box = 0
  34. end
  35. if (chance == cox) and (box==8) then
  36. bethigh = false
  37. nextbet = balance/72
  38. chance = min
  39. box = 0
  40. bit = 0
  41. end
  42. if balance > good then
  43. stop()
  44. end
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement