Advertisement
coinwalk

better

Jun 24th, 2020
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. more = balance
  2. fraction = 100000
  3. basebet = balance/fraction
  4. nextbet = basebet
  5. mores = balance
  6. loss = 0
  7. winn = 0
  8. bethigh = true
  9. target = balance*25
  10. chance = 49.95
  11. function dobet()
  12. if win then
  13. winn+=1
  14. loss = 0
  15. else
  16. loss +=1
  17. winn = 0
  18. end
  19. if (winn == 2) then
  20. nextbet = previousbet*2
  21. winn = 0
  22. end
  23. if (balance > ((more+(basebet*3)))) then
  24. nextbet = previousbet*2
  25. more = balance
  26. end
  27. if balance > mores*((1/fraction)+1) then
  28. nextbet = balance/fraction
  29. mores = balance
  30. end
  31. if (balance > target) then
  32. stop()
  33. end
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement