Advertisement
coinwalk

lua bot

Jun 18th, 2020
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. more = balance
  2. basebet = balance/10000
  3. nextbet = basebet
  4. long = balance
  5. longer = balance
  6. loss = 0
  7. winn = 0
  8. lol = 0
  9. lil = 0
  10. xim = 0
  11. xix = 0
  12. target = balance*25
  13. chance = 49.95
  14. function dobet()
  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 = basebet
  31. end
  32. if (xim == 1) and (xix==1) and (lil==2) then
  33. nextbet = previousbet*2
  34. end
  35. if (winn>=3) then
  36. winn = 0
  37. nextbet = previousbet*2.1
  38. end if (loss>=3) then
  39. nextbet = previousbet*2
  40. loss = 0
  41. end
  42. if (balance > (more*1.0002)) then
  43. nextbet=basebet
  44. more = balance
  45. lol = 0;
  46. end
  47. if (balance > target) then
  48. stop()
  49. end
  50. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement