Advertisement
coinwalk

added 33%

Feb 21st, 2020
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. bethigh = true
  2. good = balance*30
  3. prebet = balance/5000000
  4. nextbet = prebet
  5. box = 0
  6. bit = 0
  7. min = 33
  8. max = 67
  9. chance = cox
  10. cox = 65
  11. kix = 0
  12. function dobet()
  13. if win then
  14. chance = cox
  15. nextbet = prebet
  16. bethigh = true
  17. end
  18. if (chance==min) and !win then
  19. kix+=1
  20. if (kix==2) then
  21. nextbet = previousbet*2
  22. kix = 0
  23. end
  24. end
  25. if lastBet.Roll < min then
  26. box+=1
  27. bit = 0
  28. end
  29. if lastBet.Roll > max then
  30. bit+=1
  31. box = 0
  32. end
  33. if lastBet.Roll > min and lastBet.Roll < max and (chance==cox) then
  34. bit = 0
  35. box = 0
  36. end
  37. if (chance == min) and bit >= 3 and !win then
  38. bethigh = true
  39. end
  40. if (chance == min) and box >= 3 and !win then
  41. bethigh = false
  42. end
  43. if (chance == cox) and bit >= 2 then
  44. bethigh = true
  45. nextbet = balance/20000
  46. box = 0
  47. bit = 0
  48. end
  49. if (chance == cox) and box >= 2 then
  50. bethigh = false
  51. nextbet = balance/20000
  52. chance = min
  53. box = 0
  54. bit = 0
  55. end
  56. if balance > good then
  57. stop()
  58. end
  59. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement