Advertisement
coinwalk

so good

Feb 17th, 2020
503
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. bethigh = true
  2. good = 40000
  3. prebet = 0
  4. nextbet = prebet
  5. box = 0
  6. bit = 0
  7. min = 49.95
  8. max = 50.05
  9. chance = cox
  10. cox = 65
  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
  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 lastBet.Roll > min and lastBet.Roll < max then
  29. bit = 0
  30. box = 0
  31. end
  32. if (chance == min) and bit >= 3 and !win then
  33. bethigh = true
  34. end
  35. if (chance == min) and box >= 3 and !win then
  36. bethigh = false
  37. end
  38. if (chance == cox) and bit >= 5 then
  39. bethigh = true
  40. nextbet = balance/10240
  41. chance = min
  42. box = 0
  43. bit = 0
  44. end
  45. if (chance == cox) and box >= 5 then
  46. bethigh = false
  47. nextbet = balance/10240
  48. chance = min
  49. box = 0
  50. bit = 0
  51. end
  52. if balance > good then
  53. stop()
  54. end
  55. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement