base=0.00000002 -- Set This to The Target Amount of XMR You Want to Win target=balance+0.00010000 -- DO NOT CHANGE ANYTHING BELOW UNLESS YOU KNOW WHAT YOU ARE DOING chance1 = 49.50 multiplier=2 nextbet = base losecount = 0 betcount = 0 bethigh=false highloss=0 hibet=0 totalloss=0 totalwin=0 wincount=0 aveloss=0 hbid=0 counter=0 e=0 function dobet() e=currentstreak 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 win then if highloss == losecount then hbid=lastBet.Id end nextbet = base wincount+=1 totalwin+=1 totalloss+=losecount aveloss=totalloss/totalwin losecount = 0 betcount += 1 if wincount==1 then bethigh=false end if balance==target then print("Congrats Your Target Profit Amount Reached") print(" ") stop() end else losecount += 1 betcount += 1 nextbet = base end if losecount > highloss then highloss = losecount end if e==0 then nextbet = base end if losecount==0 then nextbet = base chance=chance1 end if losecount>=1 then nextbet=previousbet*multiplier chance = chance1 end if nextbet > hibet then hibet=nextbet end if nextbet > balance then nextbet = base chance=chance1 losecount=0 print("Sorry not enough balance resetting back to base") print(" ") if base > balance then print("Sorry not enough balance to continue stopping session") print(" ") stop() end end end end endscript