Advertisement
coinwalk

this good

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