Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- b = (balance/100000)
- i = balance
- t = false
- c = 3
- h = 0
- y = 7
- chance = 49.5
- nextbet = b
- bethigh = false
- target = 50000
- resetstats()
- function dobet()
- if win then
- h = h+1
- else
- h = h-1
- end
- if (h>=7) then
- nextbet = previousbet*2
- h = 0
- end
- if (h<=(y-10)) then
- nextbet = previousbet*2
- h = 0
- y = 5
- t = true
- end
- if ((balance>(i+(b*10))) or ((balance>=i) and (t==true))) then
- h = 0
- y = 7
- nextbet = b
- t = false
- i = i+((math.floor((balance-i)/(b*10)))*(b*10))
- end
- if (balance>=target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement