Advertisement
coinwalk

lolagain

Jul 10th, 2020
53
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. fraction = 5
  3. basebet = balance/fraction
  4. nextbet = 0
  5. bethigh = false
  6. loss = 0
  7. winn = 0
  8. wind = 0
  9. lossyz = 0
  10. vix = 0
  11. target = balance*2
  12. chance = 49.95
  13.  
  14. function dobet()
  15. if win then
  16. winn+=1
  17. wind = 0
  18. vix+=1
  19. else
  20. vix +=1
  21. winn = 0
  22. loss+=1
  23. wind +=1
  24. end
  25. if vix>2 then
  26. vix = 0
  27. end
  28. if (wind==1) then
  29. lossyz +=1
  30. wind = 0
  31. else
  32. losszy = 0
  33. end
  34. if (winn==5) then
  35. nextbet = previousbet*2
  36. winn = 0
  37. end
  38. if (nextbet==nil) then
  39. nextbet = previousbet
  40. end
  41. if (loss>=1) and (lossyz>0) then
  42. lossyz = 0
  43. nextbet = 0
  44. end
  45. if (loss>=2) and (winn==4) and win then
  46. nextbet = basebet
  47. loss = 0
  48. end
  49. if (balance >= target) then
  50. stop()
  51. ching()
  52. end
  53.  
  54. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement