Advertisement
coinwalk

supersnowzy

Feb 5th, 2020
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. hi = 0
  2. lo = 0
  3. base = 0.00000005
  4. nextbet = 0.00000005
  5. count = 0
  6. chance = 65
  7. bethigh = false
  8. target = 750000
  9. function dobet()
  10. if win then
  11. nextbet = base
  12. chance = 65
  13. end
  14. if win and (chance > 90) then
  15. count += 1
  16. end
  17. if lastBet.Roll > 90 then
  18. hi +=1
  19. lo = 0
  20. end
  21. if lastBet.Roll < 10 then
  22. lo +=1
  23. hi = 0
  24. end
  25. if lastBet.Roll > 10 and lastBet.Roll < 90 then
  26. hi = 0
  27. lo = 0
  28. end
  29. if lo >= math.random(3,5) then
  30. hi = 0
  31. lo = 0
  32. nextbet = math.random(35,60)/100*balance
  33. chance = math.random(9000,9500)/100
  34. bethigh = false
  35. end
  36. if hi >= math.random(3,5) then
  37. hi = 0
  38. lo = 0
  39. nextbet = math.random(35,60)/100*balance
  40. chance = math.random(9000,9500)/100
  41. bethigh = true
  42. end
  43. print(" ")
  44. print("hi: "..hi)
  45. print("lo: "..lo)
  46. print("count: "..count)
  47. print(" ")
  48. if balance > target then
  49. stop()
  50. end
  51. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement