Advertisement
coinwalk

ye har ye harr!!!!

Mar 11th, 2020
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. bethigh = true
  2. good = 20000
  3. prebet = 0
  4. nextbet = prebet
  5. box = 0
  6. min = 49.95
  7. cox = 49
  8. chance = cox
  9. bit = 0
  10. max = 50.5
  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.5
  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 (chance == cox) and (bit==8) then
  29. bethigh = true
  30. nextbet = balance/72
  31. chance = min
  32. bit = 0
  33. end
  34. if (chance == cox) and (box==8) then
  35. bethigh = false
  36. nextbet = balance/72
  37. chance = min
  38. box = 0
  39. end
  40. if balance > good then
  41. stop()
  42. end
  43. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement