Advertisement
coinwalk

new lua

Jun 21st, 2020
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. more = balance
  2. basebet = balance/4000
  3. nextbet = basebet
  4. loss = 0
  5. winn = 0
  6. target = balance*25
  7. chance = 49.95
  8. function dobet()
  9. if !win then
  10. loss+=1
  11. else
  12. winn+=1
  13. end
  14. if (winn>=3) and (loss<=2) then
  15. nextbet = previousbet*2
  16. loss = 0
  17. winn = 0
  18. end
  19. if (loss>=3) and (winn<=2) then
  20. nextbet = previousbet*2
  21. loss = 0
  22. winn = 0
  23. end
  24. if (loss>2) and (winn>2) then
  25. loss = 0
  26. winn = 0
  27. nextbet = previousbet
  28. end
  29. if (balance > (more*1.0005)) then
  30. nextbet=basebet
  31. more = balance
  32. end
  33. if (nextbet > balance/20) then
  34. nextbet = balance/40
  35. end
  36. if (balance > target) then
  37. stop()
  38. end
  39. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement