Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 24.975
- nextbet = balance/2000000
- prebet = balance/2000000
- betcount = 0
- losscount = 0
- bethigh = false
- function dobet()
- if win then
- if (bethigh ==true) then bethigh=false else bethigh=true end
- betcount +=1
- else
- losscount +=1
- end
- if (betcount == 1) then
- chance = 24.975
- nextbet = previousbet*2
- end
- if (betcount == 2) then
- chance = 49.95
- nextbet = balance/2000000
- betcount = 0
- losscount = 0
- end
- if math.fmod(losscount,2)==1 and (losscount >= 4) then
- nextbet = previousbet*3
- end
- if balance > 100000 then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement