Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- bethigh = true
- good = 750000
- prebet = 0
- nextbet = prebet
- box = 0
- bit = 0
- min = 49.95
- max = 50.05
- base = 1
- multi = 2
- cox = 65
- chance = cox
- zog = 0
- amo = 2
- ammo = 3
- shit = balance*1.001
- function dobet()
- if win and (chance==min) then
- mim+=1
- chance = min
- end
- if (chance==min) and (zog > 0) and win then
- nexbet = prebet
- mim = 0
- chance = cox
- end
- if (chance==min) and (zog > 0) and !win then
- nextbet = previousbet*multi
- chance = min
- end
- if balance > shit and win then
- nextbet = prebet
- zog = 0
- chance = cox
- shit = balance*1.001
- end
- if (chance == min) and !win then
- nextbet = previousbet*multi
- end
- if lastBet.Roll < min then
- box+=1
- bit = 0
- end
- if lastBet.Roll > max then
- bit+=1
- box = 0
- end
- if lastBet.Roll < max and lastBet.Roll > min then
- bit = 0
- box = 0
- end
- if (chance==min) and bit >= amo and !win then
- bethigh = true
- end
- if (chance==min) and box >= amo and !win then
- bethigh = false
- end
- if (chance == cox) and bit >= ammo then
- bethigh = true
- chance = min
- nextbet = balance/10000
- box = 0
- bit = 0
- resetseed()
- end
- if (chance == cox) and box >= ammo then
- bethigh = false
- chance = min
- nextbet = balance/10000
- box = 0
- bit = 0
- resetseed()
- end
- if balance > good then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement