Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- edited by DICEKODE
- -- youtube: https://www.youtube.com/channel/UC-BpueviNmn12aV_pBRY3gQ
- -- blog: https://dicekode.blogspot.com
- -- whatsapp: https://chat.whatsapp.com/Faes925uLw9HkhZeFHchFf
- -- linkdonasi: berikan pada yang "berhak"
- -- This is GAMBLING! -- DWYOR (Do With Your Own Risk)
- min = 5.5
- max = 11.11
- chance1 = 83.5
- chance2 = math.random(min*100,max*100)/100
- multiplier = 1.085
- multiplier2 = 1.1250
- chance = chance1
- basebet = 0.020
- target = balance * 1.3
- nextbet = basebet
- bethigh = true
- counter = 0
- wincount = 0
- totalloss = 0
- initbalance = balance
- 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(" ")
- if counter == 25 then
- print(" ")
- print("Profit :"..string.format("%.8f",profit))
- print(" ")
- print("Current Balance : "..string.format("%.8f",balance))
- print(" ")
- counter = 0
- end
- if balance > target then
- stop()
- print("=======================")
- print("==== TARGET REACHED ====")
- print("=======================")
- print("Total Profit: "..string.format("%.8f",profit))
- end
- if (((chance > min ) and chance < max) and win) then
- initbalance = balance
- totalloss = 0
- end
- if win then
- chance = math.random(89*100,95*100)/100
- nextbet = basebet
- wincount += 1
- bethigh = true
- if initbalance > balance then
- totalloss = initbalance - balance
- end
- if wincount > 35 then
- chance2 = math.random(min*100,max*100)/100
- chance = chance2
- nextbet = basebet/2
- bethigh = false
- wincount = 0
- end
- else
- wincount = 0
- if (chance < min*1.24 ) then
- nextbet = previousbet*multiplier
- else
- if (chance > min*1.24 ) then
- nextbet = previousbet*multiplier2
- end
- end
- end
- end
Add Comment
Please, Sign In to add comment