Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- STAND BY ME --
- -- HIGH RISK LOW 0.1-10 --
- --resetseed()
- resetstats()
- chance = 50
- base = 0.00000001--balance / 10000000 --ATUR STAKE
- nextbet = base
- d = 1.2
- betcount = 0
- ------------------------
- target = balance+301 --TAKE PROFIT 10%
- resetstats()
- function dobet()
- bethigh = !bethigh
- betcount += 1
- if betcount >= 300 then
- --resetseed()
- betcount=0
- end
- if profit > target then
- stop()
- end
- if r == 1 then
- chance = math.random(10,100)/100
- if !win then
- nextbet = previousbet*(1+(0.010205*d))
- chance = math.random(10,100)/100
- end
- end
- if r == 2 then
- chance = math.random(10,200)/100
- if !win then
- nextbet = previousbet*(1+(0.020619*d))
- chance = math.random(10,200)/100
- end
- end
- if r == 3 then
- print("WARNING")
- chance = math.random(10,300)/100
- if !win then
- nextbet = previousbet*(1+(0.00003125*d))
- chance = math.random(10,300)/100
- end
- end
- if r == 4 then
- chance = math.random(10,400)/100
- if !win then
- nextbet = previousbet*(1+(0.0000042106*d))
- chance = math.random(10,400)/100
- end
- end
- if r == 5 then
- chance = math.random(10,500)/100
- if !win then
- nextbet = previousbet*(1+(0.000053192*d))
- chance = math.random(10,500)/100
- end
- end
- if r == 6 then
- chance = math.random(10,600)/100
- if !win then
- nextbet = previousbet*(1+(0.0000064517*d))
- chance = math.random(10,600)/100
- end
- end
- if r == 7 then
- chance = math.random(10,700)/100
- if !win then
- nextbet = previousbet*(1+(0.0000076087*d))
- chance = math.random(10,700)/100
- end
- end
- if r == 8 then
- chance = math.random(10,800)/100
- if !win then
- nextbet = previousbet*(1+(0.0000087913*d))
- chance = math.random(10,800)/100
- end
- end
- if r == 9 then
- chance = math.random(10,900)/100
- if !win then
- nextbet = previousbet*(1+(0.00001*d))
- chance = math.random(10,900)/100
- end
- end
- if r == 10 then
- chance = math.random(10,1000)/100
- if !win then
- nextbet = previousbet*(1+(0.000011236*d))
- chance = math.random(10,1000)/100
- end
- end
- if win then
- r=math.random(10)
- chance = math.random(10,90)
- nextbet = base
- bethigh = !bethigh
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement