Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Joseph Stallin
- --2023-03-10
- --Mentari Pagi
- div = 1000000
- bb = 0.000089--balance/div--basebet
- nextbet = bb
- minbet = bb
- chance = 33
- chl = 11
- chll = 24
- chr = 30
- cs = 3--incresed after ls
- inc = 2--multiply
- limitls = 40
- tp = balance * 20 --target profit
- resetstats()
- --A Place Where Someone Still Thinks About You
- --Is A Place You Can Call Home.
- --Jiraiya
- ---------- readonly ----------
- function dobet()
- if balance > tp then stop() end
- bethigh = math.random(10)> 3
- if win then
- if (partialprofit > 0) then
- chance = 25
- nextbet = bb
- resetpartialprofit()
- else
- nextbet = previousbet / 10
- end
- else
- chance = math.random(chl,chll)
- if (currentstreak <= -limitls) then
- chance = chr
- nextbet = math.abs(partialprofit)/((99/chance)-1)*1.01
- else
- if (currentstreak % -cs == 0) then
- nextbet = previousbet * inc
- end
- end
- end
- nextbet = math.max(minbet, nextbet)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement