Advertisement
coinwalk

yooooora

Oct 12th, 2019
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. chance = 49.95
  2. basebet = 0.00000001
  3. nextbet = 0.00000001
  4. wincount = 0
  5. losscount = 0
  6. bethigh = true
  7. function dobet()
  8. if win then
  9. wincount += 1
  10. losscount = 0
  11. end
  12. if !win then
  13. losscount += 1
  14. nextbet = previousbet*2
  15. end
  16. if (wincount == 2) then
  17. nextbet = basebet
  18. wincount = 0
  19. end
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement