Advertisement
coinwalk

try this guys

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