Advertisement
coinwalk

muhahahaha

Jul 10th, 2020
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 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. wiznnn = 0
  12. target = balance*2
  13. chance = 49.95
  14.  
  15. function dobet()
  16. if win then
  17. winn+=1
  18. wind = 0
  19. vix+=1
  20. wiznnn+=1
  21. else
  22. vix +=1
  23. wiznnn = 0
  24. winn = 0
  25. loss+=1
  26. wind +=1
  27. end
  28. if vix>2 then
  29. vix = 0
  30. end
  31. if (wind==1) then
  32. lossyz +=1
  33. wind = 0
  34. else
  35. losszy = 0
  36. end
  37. if (winn==8) then
  38. nextbet = previousbet*2
  39. winn = 0
  40. end
  41. if (wiznnn>9) then
  42. nextbet = 0
  43. end
  44. if (nextbet==nil) then
  45. nextbet = previousbet
  46. end
  47. if (loss>=1) and (lossyz>0) then
  48. lossyz = 0
  49. nextbet = 0
  50. end
  51. if (loss>=2) and (winn==7) and win then
  52. nextbet = basebet
  53. loss = 0
  54. end
  55. if (balance >= target) then
  56. stop()
  57. ching()
  58. end
  59.  
  60. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement