Advertisement
coinwalk

trying

Sep 14th, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. fraction = 100
  2. basebet = balance/fraction
  3. chance = 49.95
  4. nextbet = basebet
  5. bethigh = false
  6. james = balance
  7. target = 160
  8. bin = 0
  9. lol = basebet*2
  10. jim = basebet
  11. snow = balance
  12. resetstats()
  13. function dobet()
  14. if (balance>=(james+(basebet*7))) then
  15. nextbet = previousbet*2
  16. end
  17. if !win then
  18. bin+=1
  19. end
  20. if (bin>=7) and balance<james then
  21. nextbet = previousbet*2
  22. end
  23. if (nextbet>=(balance-(snow+(basebet*7)))) then
  24. nextbet = basebet
  25. end
  26. if balance>james and (balance>=(snow+(basebet*7))) then
  27. nextbet = basebet
  28. bin = 0
  29. james = balance
  30. end
  31. if balance>target then
  32. stop()
  33. end
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement