Advertisement
coinwalk

new lua ye har

Jul 6th, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. more = balance
  2. fraction = 160000
  3. basebet = long/fraction
  4. nextbet = basebet
  5. bethigh = false
  6. loss = 0
  7. winn = 0
  8. lossy = 0
  9. xix = 0
  10. target = balance*1000
  11. chance = 49.95
  12. function dobet()
  13. if !win then
  14. loss+=1
  15. lossy+=1
  16. bethigh = !bethigh
  17. else
  18. winn+=1
  19. xix+=1
  20. loss = 0
  21. lossy = 0
  22. end
  23. if (loss==2) then
  24. bethigh = !bethigh
  25. loss = 0
  26. end
  27. if (lossy==3) then
  28. bethigh = !bethigh
  29. lossy = 0
  30. end
  31. if (winn==2) then
  32. nextbet = previousbet*2
  33. winn = 0
  34. end
  35. if (xix==3) then
  36. nextbet = previousbet*2
  37. xix = 0
  38. winn = 0
  39. end
  40. if (nextbet == nil) then
  41. nextbet = previousbet
  42. end
  43. if (balance >= more) then
  44. nextbet = balance/fraction
  45. more = balance
  46. end
  47. if (balance > target) then
  48. stop()
  49. end
  50. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement