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 = 49
- basebet = 0.00010
- maxbet = 10.0000
- maxbal = balance * 1.1
- minbal = balance * 0.9
- resets = basebet * 10
- profits = 0
- sesi = 0
- hibet = 0
- stopwin = false
- nextbet = basebet
- function dobet()
- profits += currentprofit
- if profit > resets then
- if stopwin then stop() end
- sesi += 1
- resetstats()
- end
- if !win then
- nextbet = basebet
- end
- if (currentstreak == 1) then
- nextbet = math.abs(profit)+(basebet*2)
- end
- if (nextbet > hibet) then
- hibet = nextbet
- end
- if (nextbet > maxbet) then
- nextbet = basebet
- resetstats()
- end
- if (nextbet < 0) then nextbet = basebet end
- if (balance > maxbal) then stop() end
- if (balance - nextbet < minbal) then stop() end
- print("\n\n")
- print("target "..maxbal)
- print("highest bet "..hibet)
- print("profit "..profits)
- print("sesi "..sesi)
- end
Add Comment
Please, Sign In to add comment