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)
- resetstats()
- startbalance = balance
- m1 = 1.1
- m2 = 1.65
- roundprofit = 0
- n = 0.0000025
- base = n
- nextbet = base
- chance1 = math.random(5,9)
- chance2 = math.random(19,20)
- l = 0
- stop_profit = 100.01
- bethigh = true
- chance = chance1
- function dobet()
- if balance > stop_profit then
- stop()
- end
- l += 1
- r = math.random(100)
- chance1 = math.random(5,9)
- chance2 = math.random(19,20)
- if win then
- l = 0
- s = 0
- base = n
- nextbet = base
- chance = chance1
- bethigh = !bethigh
- end
- if (l == 0) then
- chance = chance1
- base = n
- nextbet = base
- else
- nextbet = previousbet * m1
- chance = chance1
- end
- if (l == 20) then
- nextbet = previousbet * m2
- chance = chance2
- end
- if (l > 20) then
- chance2 = math.random(19,20)
- chance = chance2
- nextbet = previousbet * m2
- if (r > 50) then
- bethigh = true
- else
- bethigh = false
- end
- end
- end
Add Comment
Please, Sign In to add comment