Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = math.random(75.00*100.0, 85.00*100.0)/100.0
- multiplier = 1.7
- base = balance/100000
- nextbet = base
- bethigh = false
- rollcount = 7
- jib = balance/400000
- job = balance/100000
- function dobet()
- --Randomizer
- r=math.random(2)
- if r == 1 then
- bethigh=true
- else
- bethigh=false
- end
- -- bets
- if win then
- chance = math.random(75.00*100.0, 85.00*100.0)/100.0
- nextbet = math.random(jib*100000000,job*100000000)/99900000.0
- else
- chance = math.random(35.00*100.0, 45.00*100.0)/100.0
- nextbet = previousbet * multiplier
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement