Advertisement
coinwalk

blondy

Dec 17th, 2019
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1.  
  2.  
  3. --v4 chances fluctuate v2
  4. --https://youtu.be/EalaBF0zRDg
  5.  
  6. chance = 43
  7. multi = 1.9
  8. a=0
  9. b=0
  10. c=-2
  11. d=0
  12.  
  13. rollcount=0
  14. base = balance/1000000
  15. nextbet = base
  16. ---------------------------
  17. target = balance*1.05
  18. stoploss = balance*0.96
  19. ---------------------------
  20. losecount=0
  21. wincount=0
  22.  
  23. function dobet()
  24.  
  25. if balance-nextbet >= target then
  26. stop()
  27. ching()
  28. resetseed()
  29. print(balance)
  30. print("TARGET ACHIEVED!!!")
  31. print("You Won")
  32. print("Profit: " .. string.format("%9.8f", profit) )
  33. print("for this Session")
  34. end
  35.  
  36. if balance-nextbet <= stoploss then
  37. stop()
  38. ching()
  39. resetseed()
  40. print(balance)
  41. print("ALARM!!!")
  42. print("You Lose")
  43. print("Profit: " .. string.format("%9.8f", profit) )
  44. print("for this Session")
  45. end
  46.  
  47. a+=0.05
  48. rollcount+=1
  49.  
  50. if rollcount==77 then
  51. print("Profit: " .. string.format("%9.8f", profit))
  52. rollcount=0
  53. resetseed()
  54. end
  55.  
  56. if wincount==10 then
  57. wincount=0
  58. bethigh=!bethigh
  59. end
  60.  
  61. if win then
  62. a=0
  63. b=0
  64. c=-2
  65. d=0
  66. nextbet = balance/1000000
  67. chance = 43
  68. multi = 1.9
  69. losecount=0
  70. wincount+=1
  71. else
  72. nextbet = 0
  73. chance+=c
  74. nextbet = previousbet*(multi-a)
  75. losecount+=1
  76. end
  77. --***
  78. if (losecount>=9) then
  79. b+=0.015
  80. c=-1
  81. nextbet = previousbet*1.35
  82. end
  83. if (losecount>=19) then
  84. d+=0.05
  85. c=3
  86. nextbet = previousbet*(1.3+d)
  87. end
  88. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement