Advertisement
coinwalk

for elele

Sep 6th, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. fraction = 10000
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. bethigh = true
  5. chance = 49.95
  6. target = balance*100
  7. james = balance*1.0005
  8. him = balance*1.00035
  9. dim = balance/1.0002
  10. resetstats()
  11. function dobet()
  12. if win then
  13. dim = balance/1.0002
  14. else
  15. bethigh = !bethigh
  16. end
  17. if balance>him then
  18. nextbet = previousbet
  19. him = balance*1.00035
  20. dim = balance/1.0002
  21. end
  22. if (nextbet==nil) then
  23. nextbet = previousbet
  24. end
  25. if balance<dim then
  26. nextbet = previousbet*2
  27. dim = balance/1.0002
  28. end
  29. if balance>james then
  30. nextbet = balance/fraction
  31. dim = balance/1.0002
  32. james = balance*1.0005
  33. end
  34. if balance>target then
  35. stop()
  36. end
  37. end
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement