DCORS 2 IN 1 SCRIPT chance1 = 83.5 chance2 = 16.50 multiplier = 1.20 chance = chance1 basebet = 0.00000010 --> Basebet / Minimum Bet -- Can be adjusted to the minumum bet of the chosen coin targetprofit = 0.00100000 --> Target Profit Adjust to at least 10% of Bankroll target = balance+targetprofit nextbet = basebet bethigh = true counter = 0 wincount = 0 totalloss = 0 initbalance = balance function dobet() counter += 1 print(" ") print("Profit :"..string.format("%.8f",profit)) print(" ") print("Bet Amount :"..string.format("%.8f",nextbet)) print("Current Balance : "..string.format("%.8f",balance)) print(" ") if counter == 25 then print(" ") print("Profit :"..string.format("%.8f",profit)) print(" ") print("Current Balance : "..string.format("%.8f",balance)) print(" ") counter = 0 end if balance > target then stop() print("=======================") print("==== TARGET REACHED ====") print("=======================") print("Total Profit: "..string.format("%.8f",profit)) end if ((chance == chance2) and win) then initbalance = balance totalloss = 0 end if win then nextbet = basebet wincount += 1 bethigh = true chance = chance1 if initbalance > balance then totalloss = initbalance - balance end if wincount > 10 then chance = chance2 nextbet = basebet+(totalloss/2) bethigh = false wincount = 0 end end if !win then wincount = 0 if (chance == chance2) then nextbet = previousbet*multiplier end end end -- <> ==