Advertisement
coinwalk

lua snowybot

Jun 18th, 2020
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 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*1.1
  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 (balance > (more)) then
  27. nextbet=basebet
  28. more = balance
  29. lol = 0;
  30. end if (winn>=3) then
  31. winn = 0
  32. nextbet = previousbet*2.1
  33. end if (loss>=3) then
  34. nextbet = previousbet*2
  35. loss = 0
  36. end if (nextbet==previousbet*2) then
  37. lol+=1
  38. long = balance
  39. nextbet = previousbet/2
  40. end if (nextbet<(longer/40000)) then
  41. nextbet = basebet
  42. end
  43. if (xim == 1) and (xix==1) and (lil==2) then
  44. nextbet = previousbet*2
  45. end
  46. if xim>=2 or xix>=2 or lol>=3 then
  47. lil = 0
  48. xim = 0
  49. xix = 0
  50. end
  51. if (balance > target) then
  52. stop()
  53. end
  54. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement