Advertisement
coinwalk

my bot

Jun 18th, 2020
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 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. basebet = balance/280000
  15. if !win then
  16. loss+=1
  17. xix+=1
  18. lil+=1
  19. winn = 0
  20. else
  21. loss = 0
  22. xim+=1
  23. lil+=1
  24. winn+=1
  25. end
  26. if xim>=2 or xix>=2 or lol>=3 then
  27. lil = 0
  28. xim = 0
  29. xix = 0
  30. nextbet = previousbet
  31. end
  32. if (xim == 1) and (xix==1) and (lil==2) then
  33. nextbet = previousbet*2
  34. end
  35. if (balance > (more)) then
  36. nextbet=basebet
  37. more = balance
  38. end
  39. if (winn>=2) then
  40. winn = 0
  41. nextbet = previousbet*2.1
  42. end if (loss>=2) then
  43. nextbet = previousbet*2
  44. loss = 0
  45. end
  46. if (balance > target) then
  47. stop()
  48. end
  49. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement