Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 5000
- basebet = 0.01
- base = basebet
- chance = 80
- nextbet = basebet
- bethigh = false
- oldbal = balance
- target = 50000
- shit = 0
- stuff = 0
- sex = 0
- smck = 0
- sux = 0
- resetstats()
- function dobet()
- if !win and (chance==80) then
- nextbet = previousbet*2
- chance = 24
- end
- if !win and (chance==24) then
- nextbet = ((wagered/3)+basebet)
- sux+=1
- end
- if win and (chance==24) then
- sux = 0
- chance = 80
- end
- if sux>=5 then
- nextbet = previousbet*10
- chance = 80
- sux = 0
- end
- if (balance>=oldbal) then
- nextbet = basebet
- sux = 0
- oldbal = balance
- resetstats()
- end
- if (balance>=target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement