Advertisement
coinwalk

need 0.03 for this one

Jan 24th, 2019
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. chance=22
  2. row=0.0003
  3. base=0.0001
  4. prebet=0.000001
  5. function dobet()
  6. if win then
  7. nextbet=prebet
  8. bethigh=true
  9. else
  10. nextbet=previousbet*1.3
  11. end
  12. if currentstreak == 2 then
  13. nextbet=base
  14. end
  15. if currentstreak == 3 then
  16. nextbet=row
  17. end
  18. if balance > 60000 then
  19. stop()
  20. end
  21. end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement