Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- NYICIL PANCI
- chance = 45
- prebet1 = 0.0000001
- preroll1 = prebet1
- base = prebet1*4
- prebet = prebet1
- preroll = preroll1
- nextbet = prebet
- betlimit = prebet*45
- target = balance * 1.5
- profittarget = balance+base
- initbalance = balance
- losslimit = balance*0.95
- firstbet = prebet
- secondbet = prebet
- temp = 0
- bethigh = true
- betcount = 0
- count = 0
- resetstats()
- resetchart()
- resetseed()
- function dobet()
- betcount+=1
- count+=1
- betlimit = prebet*500
- e = currentstreak+preroll
- if !win and (previousbet>firstbet) then
- secondbet = firstbet
- firstbet = previousbet
- end
- -- <<Bet Randomizer>>
- r=math.random(2)
- if r == 1 then
- bethigh=true
- else
- bethigh=false
- end
- -- <<Bet Randomizer>>
- if betcount == 25 then
- betcount=0
- print("Balance Limit"..string.format("%.8f", initbalance))
- print(" ")
- print("Profit : "..string.format("%.8f", profit))
- print(" ")
- end
- if count> 500 then
- resetseed()
- count=0
- end
- if balance >= profittarget then
- print("=====================")
- print("NYICIL PANCI")
- print("Profit : "..string.format("%.8f", profit))
- print("Final Balance : "..string.format("%.8f", balance))
- print("=====================")
- firstbet = prebet
- secondbet = prebet
- nextbet = prebet
- preroll = preroll1
- base = prebet*preroll
- profittarget = balance+base
- losslimit = balance*0.95
- end
- if balance >= target then
- stop()
- print("")
- print("=====================")
- print("NYICIL PANCI")
- print("Profit : "..string.format("%.8f", profit))
- print("Final Balance : "..string.format("%.8f", balance))
- print("=====================")
- print(" ")
- end
- if losslimit>balance then
- bethigh = !bethigh
- chance = math.random(30,45)
- prebet = prebet1*2.1
- base = prebet*2.1
- losslimit = balance*0.95
- else
- prebet = prebet1
- base = prebet*2.1
- end
- if balance > initbalance then
- if (balance-initbalance)==0 then
- nextbet=prebet
- end
- if (balance-initbalance)>0 then
- nextbet=prebet
- end
- initbalance = balance
- firstbet = prebet
- secondbet = prebet
- end
- if balance < initbalance then
- if (initbalance-balance)==prebet then
- bethigh = false
- chance = math.random(2,30)
- nextbet = prebet
- end
- if (initbalance-balance)==(prebet*2.1) then
- bethigh = true
- chance = math.random(5,29)
- nextbet = prebet
- end
- if (initbalance-balance)>(prebet*2.1) then
- bethigh = !bethigh
- chance = math.random(36*100.0,66*100.0)/100.0
- nextbet = firstbet+secondbet
- end
- if win and (initbalance>balance) then
- nextbet=previousbet
- end
- end
- if !win and e==2 then
- nextbet=previousbet
- end
- end --End of Dobet
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement