Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --https://www.youtube.com/watch?v=A9fCyLvraE4&t=462s
- --V10 Follow Payout; Climbing Mountain...
- base = balance/100000
- nextbet = base
- bethig=false
- p = 0
- l = 0
- wincount = 0
- losecount = 0
- a = 0
- --------------------------
- target = balance*1.1
- stoploss = balance*0.90
- --------------------------
- po = 1
- multi = 1.3
- chance = 95
- 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
- if wincount == 68 then
- nextbet = base2
- resetseed()
- bethigh=!bethigh
- end
- if currentprofit > 0 then
- p+= currentprofit
- else
- l-= currentprofit
- end
- if win then
- nextbet = base
- chance = math.random(1500,6600)/100
- wincount+=1
- p =0
- l = 0
- a = 0
- losecount = 0
- else
- a = math.random(4,9)
- nextbet = l/po
- if a == 4 then
- chance = 58.6
- po = 0.70477
- nextbet = (l+base)/po
- end
- if a == 5 then
- chance = 59.6
- po = 0.6761
- nextbet = (l+base)/po
- end
- if a == 6 then
- chance = 60.6
- po = 0.6485
- nextbet = (l+base)/po
- end
- if a == 7 then
- chance = 61.8
- po = 0.6165
- nextbet = (l+base)/po
- end
- if a == 8 then
- chance = 62.68
- po = 0.593
- nextbet = (l+base)/po
- end
- if a == 9 then
- chance = 63.68
- po = 0.5687
- nextbet = (l+base)/po
- end
- losecount+=1
- end
- print(" ")
- print("payout: "..po)
- print("a: "..a)
- print("lost: "..l)
- print(" ")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement