Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 39.96
- multiplier = 1.963
- basefactor = 10 -- Basebet in satoshis
- prebet = 0.00000001
- preroll = 1
- target = balance+0.00050000
- nextbet = prebet
- losecount = 0
- betcount = 0
- bethigh = true
- highloss = 0
- hibet = 0
- totalloss = 0
- totalwin = 0
- wincount = 0
- aveloss = 0
- hbid = 0
- counter = 0
- e=0
- --resetseed() -- If you want to reset the seed
- --resetstats() -- If you want to reset the stats after a session, remove the double dash in front.
- function dobet()
- e = currentstreak+preroll
- -- ==counter ==
- if counter==500 then
- resetseed()
- counter=0
- else
- counter+=1
- end
- print(" ")
- print("Total Bet : "..betcount)
- print("Current Streak Loss : "..losecount)
- print("Highest Loss Streak : "..highloss)
- print("Average Loss Streak : "..string.format("%.2f",aveloss))
- print("Highest Bet :"..string.format("%.8f",hibet))
- print("Highest Win Bet ID : "..hbid)
- print("Profit :"..string.format("%.8f",profit))
- print(" ")
- print("Bet Amount :"..string.format("%.8f",nextbet))
- print("Current Balance : "..string.format("%.8f",balance))
- print(" ")
- if base<prebet then
- base = prebet
- end
- if win then
- if highloss == losecount then
- hbid=lastBet.Id
- end
- nextbet = prebet
- wincount+=1
- totalwin+=1
- totalloss+=losecount
- aveloss=totalloss/totalwin
- losecount = 0
- betcount += 1
- if balance>target then
- stop()
- ching()
- print(" ")
- print("TARGET REACHED :"..string.format("%.8f",target))
- print("Current Balance : "..string.format("%.8f",balance))
- print(" ")
- end
- else
- losecount += 1
- betcount += 1
- nextbet = prebet
- end
- if losecount > highloss then
- highloss = losecount
- end
- if losecount >1 then
- nextbet = prebet
- end
- if losecount > 3 then
- nextbet = prebet * basefactor
- end
- if losecount > 4 then
- nextbet = previousbet*multiplier
- end
- if nextbet > hibet then
- hibet=nextbet
- end
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement