Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- hi = 0
- lo = 0
- ho = 0
- mo = 0
- base = 0.000001
- nextbet = base
- chance = 33
- bethigh = false
- target = 3000000
- function dobet()
- if win then
- nextbet = base
- chance = 33
- end
- if !win and (chance==78) then
- nextbet = previousbet*4
- end
- if !win and (chance==33) then
- nextbet = previousbet*1.5
- end
- if !win and (chance==45) then
- nextbet = previousbet*2.2
- end
- if lastBet.Roll > 78 then
- ho +=1
- mo = 0
- hi = 0
- lo = 0
- end
- if lastBet.Roll < 22 then
- mo +=1
- ho = 0
- lo = 0
- hi = 0
- end
- if lastBet.Roll > 55 then
- hi +=1
- lo = 0
- end
- if lastBet.Roll < 45 then
- lo +=1
- hi = 0
- end
- if lastBet.Roll > 45 and lastBet.Roll < 55 then
- hi = 0
- lo = 0
- end
- if lastBet.Roll > 22 and lastBet.Roll < 78 then
- ho = 0
- mo = 0
- end
- if mo >= 4 then
- hi = 0
- lo = 0
- nextbet = math.random(2,4)/100*balance
- chance = 78
- bethigh = false
- end
- if ho >= 4 then
- hi = 0
- lo = 0
- nextbet = math.random(2,4)/100*balance
- chance = 78
- bethigh = true
- end
- if lo >= 10 then
- hi = 0
- lo = 0
- nextbet = math.random(3,6)/100*balance
- chance = 45
- bethigh = false
- end
- if hi >= 10 then
- hi = 0
- lo = 0
- nextbet = math.random(3,6)/100*balance
- chance = 45
- bethigh = true
- end
- print(" ")
- print("hi: "..hi)
- print("lo: "..lo)
- print("ho: "..ho)
- print("mo: "..mo)
- print(" ")
- if balance > target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement