Advertisement
coinwalk

trail good one

Feb 19th, 2020
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. bethigh = !bethigh
  2. good = balance*300
  3. min = 49.95
  4. max = 49.9
  5. chance = max
  6. lol = balance*1.000001
  7. base = balance/40
  8. nextbet = base
  9. box = 0
  10. bit = 0
  11. bid = 0
  12. vim = 0
  13. function dobet()
  14. if win then
  15. bit+=1
  16. else
  17. box+=1
  18. bid+=1
  19. vim+=1
  20. end
  21. if (box > 0) and (chance==max) then
  22. nextbet = balance/20000
  23. chance = min
  24. box = 0
  25. end
  26. if (bid > 1) and (chance==min) then
  27. nextbet = previousbet*2
  28. bid = 0
  29. end
  30. if vim > 8 and (chance==min) then
  31. bethigh = !bethigh
  32. vim = 0
  33. end
  34. if balance > lol and win then
  35. nextbet = base
  36. chance = max
  37. lol = balance*1.000001
  38. resetstats()
  39. end
  40. if balance > good then
  41. stop()
  42. end
  43. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement