Advertisement
coinwalk

woot

Feb 26th, 2020
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. bethigh = false
  2. good = 100000
  3. prebet = balance/100000
  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. kix+=1
  20. if (kix==2) then
  21. if lastBet.Roll > 20 then
  22. nextbet = previousbet*(lastBet.Roll/10)
  23. else
  24. nextbet = previousbet*(lastBet.Roll*2)
  25. end
  26. kix = 0
  27. end
  28. end
  29. if lastBet.Roll < min then
  30. box+=1
  31. bit = 0
  32. end
  33. if lastBet.Roll > max then
  34. bit+=1
  35. box = 0
  36. end
  37. if lastBet.Roll > min and lastBet.Roll < max then
  38. bit = 0
  39. box = 0
  40. end
  41. if (chance == cox) and bit >= 7 then
  42. nextbet = balance/512
  43. box = 0
  44. bit = 0
  45. chance = min
  46. end
  47. if (chance == cox) and box >= 7 then
  48. chance = min
  49. nextbet = balance/512
  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