chance = math.random(75.00*100.0, 85.00*100.0)/100.0 multiplier = 1.7 base = 0.00001 nextbet = base bethigh = false rollcount = 7 function dobet() --Randomizer r=math.random(2) if r == 1 then bethigh=true else bethigh=false end --Randomly select High/Low --bethigh = math.random(0,100)%2 == 0 --change seed every 7 bet if rollcount == 7 then rollcount = 0 resetseed(); else rollcount = rollcount + 1 end if (1000) < (nextbet) then stop(); print(balance) print("INSUFFICIENT FUNDS-FONDOS INSUFICIENTES") end --bet progression if win then chance = math.random(75.00*100.0, 85.00*100.0)/100.0 nextbet = math.random(0.00001*100000000,0.00004*100000000)/100000000.0 else chance = math.random(35.00*100.0, 45.00*100.0)/100.0 nextbet = previousbet * multiplier end end end