--77% chance=49.95--sets your chance for placing a bet base=0.000010 nextbet=base --sets your first bet. bethigh=true --bet high when true, bet low when false addlimit=0.01 limite=balance+addlimit multiply1=4.45 multiply2=10 moneyvalue=0.003639 count=0 enablezz=false --set to true to use high/low switching --settings from advanced mode enablesrc=false --set to true to use stop/reset conditions --settings from advanced mode function dobet() chance=49.95 if win then if balance > limite then nextbet=base limite=limite+addlimit count=0 chance=49.95 end else if count<3 then chance=77 nextbet=nextbet*multiply1 count=count+1 else chance=95 nextbet=nextbet*multiply2 end end print("") cash=balance*moneyvalue print("Cash: "..cash ) print("Next limit: "..limite) print("") end