chance=66 greencount=1 startbalance=balance base=0.001 nextbet=base addlimit=0.01 limite=balance+addlimit moneyvalue=0.003639 function dobet() if win then if greencount % 3 ==0 then nextbet=nextbet*2 end greencount=greencount+1 if balance > limite then nextbet=base limite=balance+addlimit greencount=1 end else greencount=1 nextbet=nextbet*2.2 end myprofit=balance-startbalance print("") cash=balance*moneyvalue print("Cash: "..cash ) print("Next limit: "..limite) print("Profit: "..myprofit) print("") end