Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- base = balance/1500000
- nextbet = base
- target = 500
- multi = 1.5
- chance = 5
- losecount = 0
- bethigh = false
- function dobet()
- --Randomizer
- r=math.random(2)
- if r == 1 then
- bethigh=true
- else
- bethigh=false
- end
- if currentstreak <= -15 then
- nextbet = previousbet * 1.5
- chance = math.random(5,25)
- losecount+=1
- else
- if win then
- chance = 5
- nextbet = base
- end
- end
- if balance >= target then
- stop()
- print(" ")
- print("Winnneerrrr")
- print(" ")
- end
- print("chance : "..chance)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement