Advertisement
coinwalk

beats 17 reds

Jun 18th, 2020
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. more = balance
  2. basebet = balance/280000
  3. nextbet = basebet
  4. long = balance
  5. longer = balance
  6. loss = 0
  7. winn = 0
  8. lil = 0
  9. xim = 0
  10. xix = 0
  11. target = balance*25
  12. chance = 49.95
  13. function dobet()
  14. if !win then
  15. loss+=1
  16. xix+=1
  17. lil+=1
  18. winn = 0
  19. else
  20. loss = 0
  21. xim+=1
  22. lil+=1
  23. winn+=1
  24. end
  25. if xim>=2 or xix>=2 or lol>=3 then
  26. lil = 0
  27. xim = 0
  28. xix = 0
  29. nextbet = previousbet
  30. end
  31. if (xim == 1) and (xix==1) and (lil==2) then
  32. nextbet = previousbet*2
  33. end
  34. if (winn>=2) then
  35. winn = 0
  36. nextbet = previousbet*2.1
  37. end if (loss>=2) then
  38. nextbet = previousbet*2
  39. loss = 0
  40. end
  41. if (balance > (more)) then
  42. nextbet=basebet
  43. more = balance
  44. end
  45. if (balance > target) then
  46. stop()
  47. end
  48. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement