Advertisement
coinwalk

30ltc bot

Apr 22nd, 2021
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. fraction = 50000
  2. basebet = balance/fraction
  3. base = balance/fraction
  4. nextbet = basebet
  5. mega = 200000
  6. chance = 49.95
  7. oldbal = balance
  8. target = balance*2
  9. bethigh = false
  10. old = balance
  11. bad = balance
  12. max = true
  13. resetstats()
  14.  
  15.  
  16. function dobet()
  17. if ((balance-bad)>=(basebet*7)) then
  18. nextbet = previousbet*2
  19. basetbet = nextbet
  20. bad = balance
  21. end
  22. if (bad-basebet>balance) then
  23. nextbet = previousbet*2
  24. basebet = nextbet
  25. bad = balance
  26. max = false
  27. end
  28. if balance>=old and max==true then
  29. old = balance
  30. end
  31. if balance>=old and max==false then
  32. nextbet = base
  33. basebet = base
  34. bad = balance
  35. max = true
  36. old = balance
  37. end
  38. if ((balance-oldbal)>=(basebet*11)) then
  39. nextbet = base
  40. basebet = base
  41. max = true
  42. bad = balance
  43. oldbal = balance
  44. end
  45. if balance>target then
  46. base = balance/fraction
  47. nextbet = base
  48. basebet = base
  49. max = true
  50. bad = balance
  51. oldbal = balance
  52. target = balance*2
  53. end
  54. if balance>=mega then
  55. stop()
  56. end
  57. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement