Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- bethigh = true
- good = 2
- prebet = balance/3200000
- nextbet = prebet
- box = 0
- min = 49.95
- cox = 49
- kill = 70
- killme = 30.5
- zim = 24
- zlom = 76
- chance = cox
- bit = 0
- bits = 0
- boxs = 0
- slan = 0
- slob = 0
- max = 50.5
- function dobet()
- if win then
- chance = cox
- nextbet = prebet
- bethigh = true
- end
- if (chance==min) and !win then
- nextbet = previousbet*2.5
- end
- if (chance==kill) and !win then
- nextbet = previousbet*4
- end
- if (chance==zim) and !win then
- nextbet = previousbet*1.35
- end
- if lastBet.Roll > min then
- box += 1
- bit = 0
- end
- if lastBet.Roll < max then
- bit += 1
- box = 0
- end
- if lastBet.Roll > kill then
- boxs += 1
- bits = 0
- end
- if lastBet.Roll < killme then
- bits += 1
- boxs = 0
- end
- if (chance == cox) and (bit==9) then
- bethigh = false
- nextbet = balance/10240
- chance = min
- bit = 0
- box = 0
- end
- if (chance == cox) and (box==9) then
- bethigh = true
- nextbet = balance/10240
- chance = min
- box = 0
- bit = 0
- end
- if (chance == cox) and (bits==7) then
- bethigh = true
- nextbet = balance/7200
- chance = kill
- bits = 0
- boxs = 0
- end
- if (chance == cox) and (boxs==7) then
- bethigh = false
- nextbet = balance/7200
- chance = kill
- boxs = 0
- bits = 0
- end
- if lastBet.Roll > zlom then
- slob += 1
- slan = 0
- end
- if lastBet.Roll < zim then
- slan += 1
- slob = 0
- end
- if (chance == cox) and (slan==2) then
- bethigh = true
- nextbet = balance/32000
- chance = zim
- sllan = 0
- slob = 0
- end
- if (chance == cox) and (slob==2) then
- bethigh = false
- nextbet = balance/32000
- chance = zim
- slob = 0
- slan = 0
- end
- if balance > good then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement