Advertisement
Baliarta

Nyicil panci

Jan 29th, 2023
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.94 KB | None | 0 0
  1.  
  2. -- NYICIL PANCI
  3.  
  4. chance = 45
  5. prebet1 = 0.0000001
  6. preroll1 = prebet1
  7. base = prebet1*4
  8.  
  9. prebet = prebet1
  10. preroll = preroll1
  11. nextbet = prebet
  12. betlimit = prebet*45
  13. target = balance * 1.5
  14. profittarget = balance+base
  15. initbalance = balance
  16. losslimit = balance*0.95
  17.  
  18. firstbet = prebet
  19. secondbet = prebet
  20. temp = 0
  21. bethigh = true
  22. betcount = 0
  23. count = 0
  24.  
  25. resetstats()
  26. resetchart()
  27. resetseed()
  28.  
  29. function dobet()
  30.  
  31. betcount+=1
  32. count+=1
  33. betlimit = prebet*500
  34. e = currentstreak+preroll
  35.  
  36. if !win and (previousbet>firstbet) then
  37. secondbet = firstbet
  38. firstbet = previousbet
  39. end
  40.  
  41. -- <<Bet Randomizer>>
  42. r=math.random(2)
  43. if r == 1 then
  44. bethigh=true
  45. else
  46. bethigh=false
  47. end
  48. -- <<Bet Randomizer>>
  49.  
  50. if betcount == 25 then
  51. betcount=0
  52. print("Balance Limit"..string.format("%.8f", initbalance))
  53. print(" ")
  54. print("Profit : "..string.format("%.8f", profit))
  55. print(" ")
  56. end
  57.  
  58. if count> 500 then
  59. resetseed()
  60. count=0
  61. end
  62.  
  63. if balance >= profittarget then
  64. print("=====================")
  65. print("NYICIL PANCI")
  66. print("Profit : "..string.format("%.8f", profit))
  67. print("Final Balance : "..string.format("%.8f", balance))
  68. print("=====================")
  69. firstbet = prebet
  70. secondbet = prebet
  71. nextbet = prebet
  72. preroll = preroll1
  73. base = prebet*preroll
  74. profittarget = balance+base
  75. losslimit = balance*0.95
  76. end
  77.  
  78. if balance >= target then
  79. stop()
  80. print("")
  81. print("=====================")
  82. print("NYICIL PANCI")
  83. print("Profit : "..string.format("%.8f", profit))
  84. print("Final Balance : "..string.format("%.8f", balance))
  85. print("=====================")
  86. print(" ")
  87. end
  88.  
  89. if losslimit>balance then
  90. bethigh = !bethigh
  91. chance = math.random(30,45)
  92. prebet = prebet1*2.1
  93. base = prebet*2.1
  94. losslimit = balance*0.95
  95. else
  96. prebet = prebet1
  97. base = prebet*2.1
  98. end
  99.  
  100. if balance > initbalance then
  101. if (balance-initbalance)==0 then
  102. nextbet=prebet
  103. end
  104.  
  105. if (balance-initbalance)>0 then
  106. nextbet=prebet
  107. end
  108.  
  109. initbalance = balance
  110. firstbet = prebet
  111. secondbet = prebet
  112. end
  113.  
  114. if balance < initbalance then
  115.  
  116. if (initbalance-balance)==prebet then
  117. bethigh = false
  118. chance = math.random(2,30)
  119. nextbet = prebet
  120. end
  121.  
  122. if (initbalance-balance)==(prebet*2.1) then
  123. bethigh = true
  124. chance = math.random(5,29)
  125. nextbet = prebet
  126. end
  127.  
  128. if (initbalance-balance)>(prebet*2.1) then
  129. bethigh = !bethigh
  130. chance = math.random(36*100.0,66*100.0)/100.0
  131. nextbet = firstbet+secondbet
  132. end
  133.  
  134.  
  135. if win and (initbalance>balance) then
  136. nextbet=previousbet
  137. end
  138. end
  139.  
  140. if !win and e==2 then
  141. nextbet=previousbet
  142. end
  143.  
  144. end --End of Dobet
  145. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement