Advertisement
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: DTbhgnUi71WE9QFVRdQCN64xPeyMRoXAxP
- -- This is GAMBLING! -- DWYOR (Do With Your Own Risk)
- chance = 39.6
- martimulti = 10
- basebet = balance * .0000001
- nextbet = basebet
- bethigh = true
- low = 0
- high = 0
- losecount = 0
- stopnow = false
- totallose = 0
- wincount = 0
- nextwinbet = basebet * martimulti
- go = false
- set = false
- function dobet()
- if (lastBet.roll < chance) then
- low += 1
- end
- if (lastBet.roll > (100 - chance)) then
- high += 1
- end
- if (win) then
- wincount += 1
- totallose = 0
- newbalance = balance
- if (high > low) then
- bethigh = true
- else
- bethigh = false
- end
- if (wincount == 1 and go) then
- nextbet = nextwinbet
- go = false
- set = false
- else
- nextbet = basebet
- end
- if (wincount == 2 and previousbet != basebet) then
- if (stopnow) then stop() end
- nextwinbet = basebet * martimulti
- set = true
- losecount = 0
- end
- if (wincount == 2) then go = true end
- else
- if (wincount == 1 and previousbet != basebet ) then
- nextwinbet = previousbet * martimulti
- martimulti = martimulti / 2
- if (martimulti < 1.85) then martimulti = 1.85 end
- losecount += 1
- print(losecount)
- end
- wincount = 0
- totallose = totallose + 1
- if (totallose == 2) then go = true end
- nextbet = basebet
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement