--95% chance=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.001 limite=balance+addlimit multiply=10 moneyvalue=0.003639 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=95 if win then if balance > limite then nextbet=base limite=limite+addlimit end else nextbet=nextbet*multiply end print("") cash=balance*moneyvalue print("Cash: "..cash ) print("Next limit: "..limite) print("") end