Advertisement
Baliarta

SAMBO

May 18th, 2023
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. --RAMBO0
  2.  
  3. base = 1e-8
  4. bethigh = false
  5. po = 79
  6. target = 05.05
  7. marti = 1.1256
  8.  
  9. nextbet = base
  10. chance = 99/po
  11.  
  12. ls = 0
  13.  
  14. function dobet()
  15. if profit > target then stop() end
  16.  
  17. if win then
  18. nextbet = base
  19. ls = 0
  20. po = 25
  21. else
  22. ls = ls + 1
  23. po = po * ((100 - 1.5)/100)
  24. nextbet = previousbet * marti
  25.  
  26. if ls == 45 then
  27. po = po * 1.5
  28. end
  29.  
  30. if ls == 75 then
  31. po = po * 1.45
  32. end
  33.  
  34. if ls == 95 then
  35. po = po * 1.55
  36. end
  37. end
  38.  
  39. chance = 99/po
  40. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement