Advertisement
coinwalk

yep

Sep 6th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. fraction = 4000
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. bethigh = true
  5. chance = 66
  6. target = 500000
  7. james = balance*1.0008
  8. him = balance*1.0005
  9. dim = balance/1.0003
  10. resetstats()
  11. function dobet()
  12. if win then
  13. dim = balance/1.0003
  14. else
  15. bethigh = !bethigh
  16. end
  17. if balance>him then
  18. nextbet = previousbet
  19. him = balance*1.0005
  20. dim = balance/1.0003
  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.0003
  28. end
  29. if balance>james then
  30. nextbet = balance/fraction
  31. dim = balance/1.0003
  32. james = balance*1.0008
  33. end
  34. if balance>target then
  35. stop()
  36. end
  37. end
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement