Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- minC1 = 79
- maxC1 = 80
- minC2 = 42
- maxC2 = 55
- stop = 0.0000001100001
- multiplier = 1.7811
- if_win = 1.106
- base = 0.0000001
- nextbet = 0.0000142
- bethigh = false
- rollcount = 15
- roundprofit = 0
- chance = math.random(minC2*100.0, maxC2*100.0)/100.0
- resetstats()
- resetchart()
- function dobet()
- roundprofit+=currentprofit
- --Randomizer
- r=math.random(2)
- if r == 1 then
- bethigh=true
- else
- bethigh=false
- end
- --change seed every 7 bet
- if rollcount == 15 then
- rollcount = 0
- --resetseed();
- else
- rollcount = rollcount + 1
- end
- --bet progression
- if win then
- chance = math.random(minC2*100.0, maxC2*100.0)/100.0
- nextbet = previousbet * if_win
- else
- chance = math.random(minC1*100.0, maxC1*100.0)/100.0
- nextbet = previousbet * multiplier
- end
- if roundprofit > stop then
- roundprofit=0
- nextbet=base
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement