Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 65
- bethigh = false
- target = 750000
- prebet = 0
- nextbet = prebet
- big = balance/50000
- zim = 0
- zag = 0
- zlim = 0
- zlag = 0
- bin = 1.5
- boob = 1
- goz = 2
- min = 33
- minz = 67
- max = 49.95
- maxz = 50.05
- pol = 65
- lol = 2
- function dobet()
- if (win) then
- boob = 1
- chance = pol
- nextbet = prebet
- bethigh = false
- else
- boob = 0
- end
- if (chance==max) and !win then
- nextbet = previousbet*goz
- end
- if lastBet.Roll > maxz then
- zim += 1
- zag = 0
- end
- if lastBet.Roll < max then
- zim = 0
- zag += 1
- end
- if (chance==max) and boob==0 and zag >= lol then
- nextbet = previousbet*goz
- bethigh = true
- end
- if (chance==max) and boob==0 and zim >= lol then
- nextbet = previousbet*goz
- bethigh = false
- end
- if zag >= 2 and chance==pol then
- bethigh = false
- nextbet = big
- chance = max
- zlim = 0
- zlag = 0
- zim = 0
- zag = 0
- end
- if (chance==min) and zag >= lol and boob==0 then
- nextbet = previousbet*goz
- bethigh = true
- zlim = 0
- zlag = 0
- zim = 0
- zag = 0
- chance = max
- end
- if (chance ==min) and zim >= lol and boob==0 then
- nextbet = previousbet*goz
- bethigh = false
- chance = max
- zlim = 0
- zlag = 0
- zim = 0
- zag = 0
- end
- if zim >= 2 and chance==pol then
- bethigh = true
- nextbet = big
- chance = max
- zlim = 0
- zlag = 0
- zim = 0
- zag = 0
- end
- if lastBet.Roll > minz then
- zlim += 1
- zlag = 0
- end
- if (chance==min) and boob==0 then
- nextbet = previousbet*bin
- end
- if lastBet.Roll < min then
- zlim = 0
- zlag += 1
- end
- if zlag >= 2 and chance==pol then
- bethigh = false
- nextbet = big
- chance = min
- zlag = 0
- zlim = 0
- zim = 0
- zag = 0
- end
- if zlim >= 2 and chance==pol then
- bethigh = true
- nextbet = big
- chance = min
- zlim = 0
- zlag = 0
- zim = 0
- zag = 0
- end
- if ((chance ==max) and zlag >= lol and !win) then
- nextbet = previousbet*bin
- bethigh = true
- chance = min
- zlim = 0
- zlag = 0
- zim = 0
- zag = 0
- end
- if ((chance==max) and zlim >= lol and !win) then
- nextbet = previousbet*bin
- bethigh = false
- chance = min
- zlim = 0
- zlag = 0
- zim = 0
- zag = 0
- end
- if (chance==min) and boob==0 and zlag >= lol then
- nextbet = previousbet*bin
- bethigh = true
- end
- if (chance==min) and boob==0 and zlim >= lol then
- nextbet = previousbet*bin
- bethigh = false
- end
- if balance > target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement