Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Premmium SC Shot--
- minC1 = 78
- maxC1 = 93
- minC2 = 5
- maxC2 = 35
- bone = 0.01
- btwo = 0.01
- stop = 5
- multiplier = 1.06
- if_win = 1.106085
- base = 0.0100
- nextbet = 0.0101
- bethigh = false
- rollcount = 7
- chance = math.random(minC2*100.0, maxC2*100.0)/100.0
- resetstats()
- 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 == 7 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 profit>stop then
- stop ()
- end
- end
Add Comment
Please, Sign In to add comment