Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- hi = 0
- lo = 0
- base = 0.00000005
- nextbet = 0.00000005
- count = 0
- chance = 65
- bethigh = false
- target = 750000
- function dobet()
- if win then
- nextbet = base
- chance = 65
- end
- if win and (chance > 90) then
- count += 1
- end
- if lastBet.Roll > 90 then
- hi +=1
- lo = 0
- end
- if lastBet.Roll < 10 then
- lo +=1
- hi = 0
- end
- if lastBet.Roll > 10 and lastBet.Roll < 90 then
- hi = 0
- lo = 0
- end
- if lo >= math.random(3,5) then
- hi = 0
- lo = 0
- nextbet = math.random(35,60)/100*balance
- chance = math.random(9000,9500)/100
- bethigh = false
- end
- if hi >= math.random(3,5) then
- hi = 0
- lo = 0
- nextbet = math.random(35,60)/100*balance
- chance = math.random(9000,9500)/100
- bethigh = true
- end
- print(" ")
- print("hi: "..hi)
- print("lo: "..lo)
- print("count: "..count)
- print(" ")
- if balance > target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement