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)
- chance = 50
- base = balance * 0.0000020
- base1 = balance * 0.0000040
- base2 = base1
- nextbet = base
- rollcount = 22
- target = balance * 1.3
- balance2 = balance
- multiplier = 1.10
- riskfail = 0
- riskpass = 0
- justfail = 0
- justpass = 0
- jackpot = 0
- profits = 0
- risk = false
- stopwin = false
- bethigh = false
- function dobet()
- profits += currentprofit
- if balance > balance2 then
- base2 = base * 1.5
- balance2 = balance
- else
- base2 = balance2 - balance
- if base2 < base * 1.5 then
- base2 = base * 1.5
- end
- end
- --bethigh = true
- if (rollcount == 23) then
- rollcount = 0
- bethigh = !bethigh
- else
- rollcount += 1
- end
- if balance < nextbet then
- stop()
- print("loss!")
- end
- if balance >= target then
- stop()
- print("target")
- end
- if risk and win then
- if profits >= 0 then
- justpass += 1
- riskpass += 1
- justfail = 0
- risk = false
- else
- riskfail += 1
- justfail += 1
- justpass = 0
- end
- end
- if profits >= 0 then
- if stopwin then stop() end
- profits = 0
- end
- chance = math.random(30,55)
- print("\n\n")
- print("base2 = "..base2)
- print("profits = "..profits)
- print("rollcount "..rollcount)
- print("risk-fail "..justfail.."/"..riskfail)
- print("risk-pass "..justpass.."/"..riskpass)
- if profit > 0 then
- base2 = base1
- end
- if win then
- chance = math.random(10,15)
- nextbet = base
- else
- nextbet = previousbet * multiplier
- end
- if (currentstreak == -1) then
- chance = math.random(10,15)
- nextbet = base2 * 1.18
- end
- if (currentstreak == -2) then
- chance = math.random(10,15)
- nextbet = previousbet
- base2 = previousbet
- end
- if (currentstreak == -3) then
- chance = math.random(10,15)
- nextbet = previousbet
- base2 = previousbet
- end
- if (currentstreak == -4) then
- chance = math.random(15,50)
- nextbet = (balance2 - balance) * multiplier
- risk = true
- end
- end
Add Comment
Please, Sign In to add comment