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)
- basebet = balance * 0.0000001
- chmin = 5
- chmax = 9
- switchwin = 3
- switchlose = 2
- ifwin = 1
- iflose = 1.2
- resetwin = 1
- profitmax = balance * 1.3
- maxloss = 60
- countwin = 0
- countlose = 0
- justwin = 0
- nextbet = basebet
- stopwin = false
- chance = 49.5
- function dobet()
- if (countwin == switchwin) then
- bethigh = !bethigh
- countwin = 0
- end
- if (countlose == switchlose) then
- bethigh = !bethigh
- countlose = 0
- end
- chance = math.random(chmin * 100,chmax * 100)/100
- if (win) then
- if stopwin then stop() end
- countwin += 1
- justwin += 1
- if (justwin == resetwin) then
- nextbet = basebet
- else
- nextbet = previousbet * ifwin
- end
- else
- countlose +=1
- justwin = 0
- nextbet = previousbet * iflose
- end
- if (profit > profitmax) then stop() end
- if (currentstreak < -maxloss) then stopwin = true end
- end
Add Comment
Please, Sign In to add comment