Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- madman = balance/144000 --240 divide
- tens = (madman*9)
- dinner = balance
- boghart = balance
- chance = 49.5
- downer = 2.9
- snow = 0
- bolux = 0
- bethigh = false
- nextbet = madman
- resetstats()
- function dobet()
- if win then
- snow = snow+1
- end
- if not win then
- bolux = bolux+1
- end
- if (snow<=0) then
- snow = 0
- end
- if (bolux<=0) then
- bolux = 0
- end
- if (snow>=2) then
- nextbet = previousbet*1.3735
- snow = 0
- end
- if (bolux>=3) then
- nextbet = previousbet*1.3735
- bolux = 0
- end
- if (balance>=boghart) then
- nextbet = madman
- downer = 2.9
- bolux = 0
- snow = 0
- boghart = balance
- end
- if (balance>=(dinner*24)) then
- print("winner winner chicken dinner")
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement