Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- minone = 66
- maxone = 66
- mintwo = 5
- maxtwo = 25
- bone = 3e-5
- btwo = 2e-5
- ip = 0
- tpg = balance*5
- chance = math.random(mintwo, maxtwo)
- il = 1.6
- xwin = 1.2
- base = 0.0003
- nextbet = base
- bethigh = false
- rollcount = 50
- resetstats()
- resetseed()
- function dobet()
- --Randomizer
- r=math.random(2)
- if r == 1 then
- bethigh=true
- else
- bethigh=false
- end
- --Randomly select High/Low
- --bethigh = math.random(0,100)%2 == 0
- --change seed every 7 bet
- if rollcount == 78 then
- rollcount = 0
- resetseed();
- else
- rollcount = rollcount + 1
- end
- --bet progression
- if win then
- chance = math.random(mintwo*100.0, maxtwo*100.0)/100.0
- if bets%2==0 then
- nextbet = previousbet/xwin
- end
- else
- chance = math.random(minone*100.0, maxone*100.0)/100.0
- if bets%2==0 then
- nextbet = previousbet * il
- end
- end
- if profit> ip then
- profit = 0
- nextbet = base
- resetstats()
- end
- if balance>tpg then
- print("PROFIT GLOBAL REACHED")
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement