Advertisement
Baliarta

Bang jos

Apr 13th, 2024
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. --Joseph Stallin
  2. --2023-03-10
  3. --Mentari Pagi
  4.  
  5. div     = 1000000
  6. bb      = 0.000089--balance/div--basebet
  7. nextbet = bb
  8. minbet  = bb
  9. chance  = 33
  10. chl     = 11
  11. chll    = 24
  12. chr     = 30
  13. cs      = 3--incresed after ls
  14. inc     = 2--multiply
  15. limitls = 40
  16. tp      = balance * 20  --target profit
  17. resetstats()
  18.  
  19. --A Place Where Someone Still Thinks About You
  20. --Is A Place You Can Call Home.
  21. --Jiraiya
  22.  
  23.  
  24. ---------- readonly ----------
  25.  
  26. function dobet()
  27.        if balance > tp then stop() end
  28.        bethigh = math.random(10)> 3
  29.  
  30.    if win then
  31.        if (partialprofit > 0) then
  32.            chance = 25
  33.        nextbet = bb
  34.        resetpartialprofit()
  35.    else
  36.        nextbet = previousbet / 10
  37.    end
  38.    else
  39.       chance = math.random(chl,chll)
  40.  
  41.       if (currentstreak <= -limitls) then
  42.           chance  = chr
  43.           nextbet = math.abs(partialprofit)/((99/chance)-1)*1.01
  44.       else
  45.           if (currentstreak % -cs == 0) then
  46.             nextbet = previousbet * inc
  47.          end
  48.       end
  49.  
  50.    end
  51.    nextbet = math.max(minbet, nextbet)
  52. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement