Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- bethigh = false
- good = 100000
- prebet = balance/5120000
- nextbet = prebet
- box = 0
- min = 49.95
- cox = 49
- chance = cox
- function dobet()
- if win then
- chance = cox
- nextbet = prebet
- bethigh = false
- end
- if (chance==min) and !win then
- nextbet = previousbet*(math.random(200,300)/100)
- end
- if lastBet.Roll < min then
- box+=1
- end
- if lastBet.Roll > min then
- box = 0
- end
- if (chance == cox) and box >= 10 then
- chance = min
- nextbet = balance/51200
- box = 0
- end
- if balance > good then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement