Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Kyo Watanabe
- --11-12-2022
- --Set Javer's
- --Edit Fast Profit / Rungkad
- target = 50
- basebet = 0.0001
- basech = chance
- nembak = 10
- ls = 0
- chance = math.random(30,50)
- nextbet = basebet
- chance = basech
- resetstats()
- resetchart()
- --resetseed()
- function dobet()
- bethigh = (math.random(100)>=35)
- chance = math.random(30,50)
- if (balance > (balance + target)) then
- stop()
- end
- if (win) then
- chance = basech
- ls = 0
- if (partialprofit > 0) then
- nextbet = basebet
- resetpartialprofit()
- else
- nextbet = previousbet + (previousbet - (previousbet * 0.5))
- end
- else
- ls = ls + 1
- nextbet = previousbet * 1.5
- if (ls == 6) then
- nextbet = nextbet + 0.001
- end
- if (losses % nembak == 0) then
- chance = math.random(9,18)
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement