Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 49
- bethigh = false
- bloom = balance*0.8
- target = balance*5
- basebet = balance/1000
- nextbet = basebet
- more = balance
- read = balance
- los = 0
- won = 0
- zom = 0
- xix = 0
- function dobet()
- if (win) then
- won+=1
- los = 0
- else
- won = 0
- los+=1
- end
- if balance > read then
- nextbet = balance/1000
- read = balance
- end
- if balance > read*2 then
- read = balance
- end
- if (won==2) then
- nextbet = previousbet*2
- won = 0
- end
- if (los==2) then
- nextbet = previousbet*2
- los = 0
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement