Advertisement
coinwalk

snowybot good

Aug 16th, 2021
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. y = 0.00001
  2. chance = 49.95
  3. bethigh = false
  4. target = 3000
  5. nextbet = y
  6. old = balance
  7. bib = 0
  8. bob = 0
  9. bety = 0
  10. myseed = 0
  11.  
  12.  
  13. function dobet()
  14. bety = bety+1
  15. if win then
  16. bob = bob+1
  17. else
  18. bib = bib+1
  19. end
  20. if ((bob==6) and (bety<=8)) then
  21. nextbet = previousbet*2
  22. bety = 0
  23. bob = 0
  24. end
  25. if ((bib>=5) and (bety>=7)) then
  26. nextbet = previousbet*2
  27. bib = 0
  28. bety = 0
  29. end
  30. if (balance>=(old+(y*8))) then
  31. bety = 0
  32. bob = 0
  33. bib = 0
  34. nextbet = y
  35. old = balance
  36. end
  37. if balance>target or balance<nextbet then
  38. stop()
  39. end
  40. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement