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