Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --v4 chances fluctuate v2
- --https://youtu.be/EalaBF0zRDg
- chance = 43
- multi = 1.9
- a=0
- b=0
- c=-2
- d=0
- rollcount=0
- base = balance/1000000
- nextbet = base
- ---------------------------
- target = balance*1.05
- stoploss = balance*0.96
- ---------------------------
- losecount=0
- wincount=0
- function dobet()
- if balance-nextbet >= target then
- stop()
- ching()
- resetseed()
- print(balance)
- print("TARGET ACHIEVED!!!")
- print("You Won")
- print("Profit: " .. string.format("%9.8f", profit) )
- print("for this Session")
- end
- if balance-nextbet <= stoploss then
- stop()
- ching()
- resetseed()
- print(balance)
- print("ALARM!!!")
- print("You Lose")
- print("Profit: " .. string.format("%9.8f", profit) )
- print("for this Session")
- end
- a+=0.05
- rollcount+=1
- if rollcount==77 then
- print("Profit: " .. string.format("%9.8f", profit))
- rollcount=0
- resetseed()
- end
- if wincount==10 then
- wincount=0
- bethigh=!bethigh
- end
- if win then
- a=0
- b=0
- c=-2
- d=0
- nextbet = balance/1000000
- chance = 43
- multi = 1.9
- losecount=0
- wincount+=1
- else
- nextbet = 0
- chance+=c
- nextbet = previousbet*(multi-a)
- losecount+=1
- end
- --***
- if (losecount>=9) then
- b+=0.015
- c=-1
- nextbet = previousbet*1.35
- end
- if (losecount>=19) then
- d+=0.05
- c=3
- nextbet = previousbet*(1.3+d)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement