Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- basebet = 0.00010001
- ifwin = 1.25
- iflose = 2
- chance1 = 79
- chance2 = 79
- stopprofit = 50 ----Wajib DI Isi Buat auto stop nya Biar Gk jebol
- -------
- stoplose = 70
- wincount = 0
- losecount = 0000
- nextbet = basebet
- chance = math.random(chance1*100,chance2*100)/100
- balmax = balance + stopprofit
- balmin = balance - stoplose
- function dobet()
- if (losecount == 1) then
- losecount = 0
- bethigh = !bethigh
- end
- if (wincount == 1) then
- wincount = 0
- bethigh = !bethigh
- end
- if(win) then
- wincount += 1
- losecount = 0
- nextbet = previousbet* ifwin
- else
- losecount += 1
- wincount = 0
- nextbet = previousbet * iflose
- end
- chance =math.random(chance1*100,chance2*100)/100
- if balance > balmax then stop() end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement