Advertisement
coinwalk

eth

Apr 27th, 2020
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. chance = 49.95
  2. bethigh = false
  3. target = 0.01
  4. basebet = 0.0000001
  5. nextbet = basebet
  6. more = balance
  7. read = balance
  8. los = 0
  9. won = 0
  10. function dobet()
  11. if (win) then
  12. won+=1
  13. los = 0
  14. else
  15. los+=1
  16. end
  17. if (won == 4) then
  18. nextbet = previousbet*2
  19. won = 0
  20. end
  21. if (los == 2) then
  22. nextbet = previousbet*2
  23. end
  24. if balance > more and win then
  25. nextbet = basebet
  26. more = balance
  27. end
  28. if balance > target then
  29. stop()
  30. end
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement