Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Dicebender's "winner winner chicken dinner"
- chance = 49.5
- multiplier=1.6
- multiplier2=0.50
- basebet = balance/1000000 --> Basebet / Minimum Bet -- Can be adjusted to the minumum bet of the chosen coin
- targetprofit = balance*0.1 --> Target Profit Adjust to at most 10% of Bankroll
- target = balance+targetprofit
- nextbet=basebet
- bethigh=true
- counter=0
- function dobet()
- counter+=1
- print(" ")
- print("Profit :"..string.format("%.8f",profit))
- print(" ")
- print("Bet Amount :"..string.format("%.8f",nextbet))
- print("Current Balance : "..string.format("%.8f",balance))
- print(" === Dicebender === ")
- if counter == 25 then
- print(" ")
- print("Profit :"..string.format("%.8f",profit))
- print(" ")
- print("Current Balance : "..string.format("%.8f",balance))
- print(" ")
- print(" === https://t.me/UnitedDice === ")
- counter=0
- end
- if balance>target then
- stop()
- print("=======================")
- print("==== winner winner chicken dinner ====")
- print("=======================")
- print("Total Profit: "..string.format("%.8f",profit))
- end
- if win then
- nextbet=previousbet/2
- if nextbet < basebet then
- nextbet=basebet
- end
- end
- if !win then
- nextbet=previousbet*1.6
- end
- end
Add Comment
Please, Sign In to add comment