Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 65
- bethigh = false
- target = 0.002
- bigbet = balance/100
- nextbet = 0
- prebet = 0
- zim = 0
- zag = 0
- function dobet()
- if (win) then
- chance = 65
- nextbet = prebet
- end
- if (chance==45) and !win then
- nextbet = previousbet*2
- end
- if (chance==45) and win then
- nextbet = prebet
- chance = 65
- end
- if lastBet.Roll > 55 then
- zim += 1
- zag = 0
- end
- if lastBet.Roll < 45 then
- zim = 0
- zag += 1
- end
- if lastBet.Roll >45 and lastBet.Roll < 55 then
- zim = 0
- zag = 0
- end
- if zag >= 5 then
- bethigh = false
- nextbet = bigbet
- chance = 45
- zag = 0
- end
- if zim >= 5 then
- bethigh = true
- nextbet = bigbet
- chance = 45
- zim = 0
- end
- if balance > target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement