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 = math.random(20,30)
- bigc = math.random(70,80)
- smallc = 100 - bigc
- base = balance / 10000
- bethigh = false
- roll = 0
- losecount = 0
- wincount = 0
- nextbet = base
- target = balance + (base * 2.5)
- bigtarget = balance * 1.25
- roll = 0
- a = math.random(1,2)
- function dobet()
- roll+=1
- if balance > bigtarget then stop() end
- bethigh = !bethigh
- if smallc >= 28 then
- multi = 1.082
- end
- if smallc < 28 and smallc >= 26 then
- multi = 1.078
- end
- if smallc <26 and smallc >= 24 then
- multi = 1.073
- end
- if smallc < 24 and smallc >= 22 then
- multi = 1.062
- end
- if smallc < 22 then
- multi = 1.058
- end
- if roll>=50 then
- resetseed()
- print(" ")
- print("target: "..target)
- print("nextbet: "..nextbet)
- print("chance: "..chance)
- print("Profit to go: "..target - balance)
- print(" ")
- end
- if win and chance < 30 then
- nextbet = previousbet/1
- else
- nextbet = previousbet*multi
- end
- if (roll == 1) then
- chance = smallc
- end
- if (roll == 2) then
- chance = bigc
- roll = 0
- end
- if !win then
- nextbet = previousbet*multi
- end
- if balance > target then
- nextbet = base
- resetseed()
- target = balance + (base * 2.5)
- bigc = math.random(70,80)
- smallc = math.random(20,30)
- chance = smallc
- end
- print(" ")
- print("target: "..target)
- print("multi: "..multi)
- print(" ")
- end
Add Comment
Please, Sign In to add comment