Advertisement
coinwalk

ok

Sep 14th, 2020
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 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. william = balance
  13. resetstats()
  14. function dobet()
  15. if (balance>=(james+(basebet*7))) then
  16. nextbet = previousbet*2
  17. end
  18. if !win then
  19. bin+=1
  20. end
  21. if (bin>=7) and balance<william then
  22. nextbet = previousbet*2
  23. end
  24. if (nextbet>=(balance-(snow+(basebet*7)))) and balance>snow then
  25. nextbet = basebet
  26. william = balance
  27. end
  28. if (balance<(snow-(basebet*3))) then
  29. nextbet = previousbet*2
  30. end
  31. if balance>james and (balance>=(snow+(basebet*7))) and win then
  32. nextbet = basebet
  33. bin = 0
  34. james = balance
  35. william = balance
  36. end
  37. if balance>target then
  38. stop()
  39. end
  40. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement