Advertisement
coinwalk

there

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