Advertisement
coinwalk

trial 4

Sep 14th, 2020
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. fraction = 20
  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)))) and balance>snow then
  24. nextbet = basebet
  25. james = balance
  26. end
  27. if (balance<(snow-(basebet*3))) then
  28. nextbet = previousbet*2
  29. end
  30. if balance>james and (balance>=(snow+(basebet*7))) and win then
  31. nextbet = basebet
  32. bin = 0
  33. james = balance
  34. end
  35. if balance>target then
  36. stop()
  37. end
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement