Advertisement
coinwalk

better technique

Apr 23rd, 2020
82
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 = true
  3. target = balance*4
  4. basebet = balance/100000
  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. won = 0
  17. end
  18. if (los == 2) then
  19. nextbet = previousbet*2
  20. los = 0
  21. end
  22. if balance > more and (won==2) then
  23. nextbet = balance/100000
  24. won = 0
  25. more = balance
  26. end
  27. if balance > target then
  28. stop()
  29. end
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement