Advertisement
coinwalk

omg

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