Advertisement
coinwalk

500 doge

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