Advertisement
coinwalk

woops thats better

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