Advertisement
coinwalk

lolzz

Jul 10th, 2020
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. more = balance
  2. fraction = 10
  3. basebet = balance/fraction
  4. nextbet = basebet
  5. bethigh = false
  6. loss = 0
  7. winn = 0
  8. wind = 0
  9. lossyz = 0
  10. vix = 0
  11. target = balance*25
  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. loss+=1
  22. wind +=1
  23. end
  24. if vix>2 then
  25. vix = 0
  26. end
  27. if (wind==1) then
  28. lossyz +=1
  29. wind = 0
  30. else
  31. losszy = 0
  32. end
  33. if (winn==4) then
  34. nextbet = previousbet*2
  35. winn = 0
  36. end
  37. if (nextbet==nil) then
  38. nextbet = previousbet
  39. end
  40. if (loss>=1) and (lossyz>0) then
  41. lossyz = 0
  42. nextbet = 0.00000001
  43. end
  44. if (loss>=1) and win then
  45. nextbet = balance/fraction
  46. loss = 0
  47. end
  48. if (balance >= target) then
  49. stop()
  50. ching()
  51. end
  52.  
  53. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement