Advertisement
coinwalk

trial with 30k sat

Feb 12th, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. chance1 = 88
  2. chance2 = 12
  3. basebet = 0.000001
  4. losecount = 0
  5. winstreak = 0
  6. enablezz = true
  7.  
  8.  
  9. function dobet()
  10.  
  11. if (win) then
  12. nextbet = basebet
  13. chance = chance1
  14. if currentstreak%20==0 then
  15. nextbet = 0.00001
  16. chance = chance2
  17. end
  18.  
  19. else
  20.  
  21. if chance == chance1 then
  22. nextbet = previousbet*10
  23. end
  24. if chance == chance2 then
  25. nextbet = previousbet*1.3
  26. losecount += 1
  27. winstreak = 0
  28. end
  29. end
  30. end
  31. end
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement