bet = balance / 1250000 nextbet = bet chance = 6 profittarget = 30255 amount = 250 bethigh = false function dobet() if (wagered) >= profittarget then stop(); end if win then --resetstats() nextbet = bet chance = 6 else nextbet = previousbet * 1.11236 chance += .25 end if chance > 12 then nextbet = previousbet * 1.222223 end if chance > 18 then nextbet = previousbet * 1.32 end if chance > 24 then nextbet = previousbet * 1.434783 end if chance > 30 then nextbet = previousbet * 1.571429 end if chance > 36 then nextbet = previousbet * 1.736843 end if chance > 42 then nextbet = previousbet * 1.941177 end if chance > 48 then nextbet = previousbet * 2.200001 end if chance > 54 then nextbet = previousbet * 2.538462 end if chance > 60 then nextbet = previousbet * 3 end if chance > 66 then nextbet = previousbet * 3.666667 end if chance > 72 then nextbet = previousbet * 4.125 end if( balance >= profittarget) then withdraw(amount,"DCTpUV4YwodPAKyZzDQ8DSJeTgCgCQRquT") end end