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.0001
- nextbet = basebet
- chance = 49.5
- minbal = balance * 0.5
- maxbal = balance * 1.5
- loss = 0
- function dobet()
- if win then
- loss -= previousbet
- nextbet = previousbet + basebet
- if nextbet > loss then
- nextbet = loss + basebet
- end
- if loss < 0 then
- nextbet = basebet
- loss = 0
- end
- else
- loss += previousbet
- nextbet = previousbet
- end
- print("")
- print("loss:")
- print(loss)
- if balance < minbal then stop() end
- if balance > maxbal then stop() end
- end
Add Comment
Please, Sign In to add comment