Advertisement
coinwalk

like this

Feb 26th, 2020
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. bethigh = false
  2. good = 100000
  3. prebet = 0
  4. nextbet = prebet
  5. box = 0
  6. bit = 0
  7. min = 49.95
  8. max = 50.05
  9. cox = 49
  10. kix = 0
  11. chance = cox
  12. function dobet()
  13. if win then
  14. chance = cox
  15. nextbet = prebet
  16. bethigh = false
  17. end
  18. if (chance==min) and !win then
  19. nextbet = previousbet*(math.random(200,400)/100)
  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 then
  30. bit = 0
  31. box = 0
  32. end
  33. if (chance == cox) and bit >= 7 then
  34. nextbet = balance/512
  35. box = 0
  36. bit = 0
  37. chance = min
  38. end
  39. if (chance == cox) and box >= 7 then
  40. chance = min
  41. nextbet = balance/512
  42. box = 0
  43. bit = 0
  44. end
  45. if balance > good then
  46. stop()
  47. end
  48. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement