Advertisement
coinwalk

lightspeed

Mar 21st, 2020
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. bethigh = true
  2. good = 2
  3. prebet = balance/3200000
  4. nextbet = prebet
  5. box = 0
  6. min = 49.95
  7. cox = 49
  8. kill = 70
  9. killme = 30.5
  10. zim = 24
  11. zlom = 76
  12. chance = cox
  13. bit = 0
  14. bits = 0
  15. boxs = 0
  16. slan = 0
  17. slob = 0
  18. max = 50.5
  19. function dobet()
  20. if win then
  21. chance = cox
  22. nextbet = prebet
  23. bethigh = true
  24. end
  25. if (chance==min) and !win then
  26. nextbet = previousbet*2.5
  27. end
  28. if (chance==kill) and !win then
  29. nextbet = previousbet*4
  30. end
  31. if (chance==zim) and !win then
  32. nextbet = previousbet*1.35
  33. end
  34. if lastBet.Roll > min then
  35. box += 1
  36. bit = 0
  37. end
  38. if lastBet.Roll < max then
  39. bit += 1
  40. box = 0
  41. end
  42. if lastBet.Roll > kill then
  43. boxs += 1
  44. bits = 0
  45. end
  46. if lastBet.Roll < killme then
  47. bits += 1
  48. boxs = 0
  49. end
  50. if (chance == cox) and (bit==9) then
  51. bethigh = false
  52. nextbet = balance/10240
  53. chance = min
  54. bit = 0
  55. box = 0
  56. end
  57. if (chance == cox) and (box==9) then
  58. bethigh = true
  59. nextbet = balance/10240
  60. chance = min
  61. box = 0
  62. bit = 0
  63. end
  64. if (chance == cox) and (bits==7) then
  65. bethigh = true
  66. nextbet = balance/7200
  67. chance = kill
  68. bits = 0
  69. boxs = 0
  70. end
  71. if (chance == cox) and (boxs==7) then
  72. bethigh = false
  73. nextbet = balance/7200
  74. chance = kill
  75. boxs = 0
  76. bits = 0
  77. end
  78. if lastBet.Roll > zlom then
  79. slob += 1
  80. slan = 0
  81. end
  82. if lastBet.Roll < zim then
  83. slan += 1
  84. slob = 0
  85. end
  86. if (chance == cox) and (slan==2) then
  87. bethigh = true
  88. nextbet = balance/32000
  89. chance = zim
  90. sllan = 0
  91. slob = 0
  92. end
  93. if (chance == cox) and (slob==2) then
  94. bethigh = false
  95. nextbet = balance/32000
  96. chance = zim
  97. slob = 0
  98. slan = 0
  99. end
  100. if balance > good then
  101. stop()
  102. end
  103. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement