Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- bethigh = true
- good = 40000
- prebet = 0
- nextbet = prebet
- box = 0
- bit = 0
- min = 49.95
- max = 50.05
- chance = cox
- cox = 65
- lol = balance
- function dobet()
- if balance-lol > lol*0.0015 then
- chance = cox
- nextbet = prebet
- bethigh = true
- lol = balance
- end
- if (chance==min) and !win then
- nextbet = previousbet*2
- end
- if lastBet.Roll < min then
- box+=1
- bit = 0
- end
- if lastBet.Roll > max then
- bit+=1
- box = 0
- end
- if lastBet.Roll > min and lastBet.Roll < max then
- bit = 0
- box = 0
- end
- if (chance == min) and bit >= 3 and !win then
- bethigh = true
- end
- if (chance == min) and box >= 3 and !win then
- bethigh = false
- end
- if (chance == cox) and bit >= 5 then
- bethigh = true
- nextbet = balance/102400
- chance = min
- box = 0
- bit = 0
- end
- if (chance == cox) and box >= 5 then
- bethigh = false
- nextbet = balance/102400
- chance = min
- box = 0
- bit = 0
- end
- if balance > good then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement