Advertisement
coinwalk

snowbot

Jul 10th, 2020
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. more = balance
  2. fraction = 256
  3. basebet = balance/fraction
  4. nextbet = 0
  5. bethigh = false
  6. loss = 0
  7. winn = 0
  8. snow = 0
  9. target = balance*2
  10. chance = 49.95
  11.  
  12. function dobet()
  13. if win then
  14. winn+=1
  15. beeb+=1
  16. snow+=1
  17. else
  18. loss+=1
  19. snow+=1
  20. end
  21. if (snow>0) then
  22. nextbet = previousbet*1.5
  23. snow = 0
  24. end
  25. if (winn>1) then
  26. winn = 0
  27. end
  28. if (loss>2) and (winn==1) and win and (balance==more) then
  29. nextbet = basebet
  30. loss = 0
  31. more = balance
  32. end
  33. if (nextbet>(balance/2)) then
  34. nextbet = 0
  35. end
  36. if (balance > more) and win then
  37. nextbet = 0
  38. snow = 0
  39. loss = 0
  40. winn = 0
  41. more = balance
  42. end
  43. if (balance >= target) then
  44. stop()
  45. ching()
  46. end
  47. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement