Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Dcors Wager
- target = balance * 100
- basebet = balance / 10000 -- Basebet for Double Wager
- wagerbal = balance / 1000 -- Basebet for Wager Routine
- maxchance = 98 -- Chance for Wager
- percentlose = .1 -- .1% loss of the current balance
- chance = maxchance
- chance1 = 83.5
- chance2 = 16.50
- multiplier = 1.20
- nextbet = wagerbal
- bethigh = true
- counter = 0
- wincount = 0
- totalloss = 0
- initbalance = balance
- stoplose = balance * (1-(percentlose/100))
- gowager = 1
- function dobet()
- print(" ")
- print("Profit :"..string.format("%.8f",profit))
- print(" ")
- print("Bet Amount :"..string.format("%.8f",nextbet))
- print("Current Balance : "..string.format("%.8f",balance))
- print(" ")
- if balance >= stoplose and gowager == 1 then
- chance = maxchance
- nextbet = wagerbal
- else
- counter += 1
- gowager=0
- if counter == 25 then
- print(" ")
- print("Profit :"..string.format("%.8f",profit))
- print(" ")
- print("Current Balance : "..string.format("%.8f",balance))
- print(" ")
- counter = 0
- end
- if ((chance == chance2) and win) then
- initbalance = balance
- totalloss = 0
- end
- if win then
- nextbet = basebet
- wincount += 1
- bethigh = true
- chance = chance1
- if initbalance > balance then
- totalloss = initbalance - balance
- end
- if wincount > 10 then
- chance = chance2
- nextbet = basebet+(totalloss/2)
- bethigh = false
- wincount = 0
- end
- end
- if !win then
- wincount = 0
- if (chance == chance2) then
- nextbet = previousbet*multiplier
- end
- end
- end
- if initbalance <= balance then
- initbalance = balance
- stoplose = balance * (1-(percentlose/100))
- gowager = 1
- end
- if balance > target then
- stop()
- print("=======================")
- print("==== TARGET REACHED ====")
- print("=======================")
- print("Total Profit: "..string.format("%.8f",profit))
- end
- end -- <<END OF DOBET>> ==
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement