Advertisement
Baliarta

nuu 49

Apr 15th, 2024
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. ch = 49.5
  2. il = 1.6
  3. iw = 0.5
  4. bb = 0.01
  5.  
  6. pr = 0
  7. tp = balance + 500
  8. sl = balance - 1000
  9. sx = sl
  10.  
  11. nextbet = bb
  12. chance = ch
  13.  
  14. function dobet()
  15.  
  16. pb = previousbet
  17. pf = profit
  18.  
  19. if win then
  20. nb = pb * iw
  21. if nb < bb then
  22. nb = bb
  23. end
  24. else
  25. nb = pb * il
  26. end
  27.  
  28. if pf > pr then
  29. pr = pf
  30. sl = sx + pf
  31. nb = bb
  32. end
  33.  
  34. if balance > tp then stop() end
  35. if balance - nb < sl then stop() end
  36.  
  37. nextbet = nb
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement