Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance1 = 88
- chance2 = 12
- basebet = 0.000001
- losecount = 0
- winstreak = 0
- enablezz = true
- function dobet()
- if (win) then
- nextbet = basebet
- chance = chance1
- if currentstreak%20==0 then
- nextbet = 0.00001
- chance = chance2
- end
- else
- if chance == chance1 then
- nextbet = previousbet*10
- end
- if chance == chance2 then
- nextbet = previousbet*1.3
- losecount += 1
- winstreak = 0
- end
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement