Advertisement
coinwalk

lolz

Jul 10th, 2020
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 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 (nextbet==nil) then
  34. nextbet = previousbet
  35. end
  36. if (loss>=1) and (lossyz>0) then
  37. lossyz = 0
  38. nextbet = 0
  39. end
  40. if (loss>=1) and win then
  41. nextbet = basebet
  42. loss = 0
  43. end
  44. if (balance >= target) then
  45. stop()
  46. ching()
  47. end
  48.  
  49. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement