Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 9999
- basebet = balance/fraction
- nextbet = basebet
- bethigh = true
- be = 0
- moi = 0
- chance = 24
- more = balance
- target = 30000
- mit = balance
- bastards = 0
- bastard = 0
- mok = 0
- zim = 0
- function dobet()
- if win then
- moi+=1
- mok+=1
- bastards = 0
- bastard = 0
- zim+=1
- else
- be+=1
- zim = 0
- end
- if (be==4) then
- nextbet = previousbet*2
- be = 0
- end
- if (bethigh==true) and (moi==3) then
- bethigh = !bethigh
- moi = 0
- end
- if (bethigh==false) and (moi==3) then
- bethigh = !bethigh
- moi = 0
- end
- if (mok>=2) and (balance>more) then
- nextbet = basebet
- more = balance
- mok = 0
- end
- if (bethigh==false) and (lastBet.Roll>76) and !win then
- bastards+=1
- end
- if (bethigh==true) and (lastBet.Roll<24) and !win then
- bastard+=1
- end
- if (bastards>=2) then
- bethigh = !bethigh
- bastards = 0
- end
- if (zim>=2) and (moi==2)then
- moi = 0
- zim = 0
- end
- if (bastard>=2) then
- bethigh = !bethigh
- bastard = 0
- end
- if balance>target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement