Advertisement
Baliarta

Sc simbah

Jan 17th, 2023
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. chance = 80.2
  2. basebet = balance/1e5
  3. basereset = basebet * 1000
  4. nextbet = basebet
  5. chance = 49.95
  6. targetpf = balance * 1.35
  7. tempBets = 0
  8. tempLosses = 0
  9.  
  10. resetstats()
  11.  
  12. function dobet()
  13.  
  14. if win then
  15. chance = 38
  16. if currentstreak >= 2 then
  17. nextbet = basebet
  18. end
  19. else
  20. nextbet = nextbet + (nextbet * (35/100))
  21. end
  22.  
  23. if losses - tempLosses == 10 then
  24. chance = 22
  25. tempLosses = losses
  26. end
  27.  
  28. if bets - tempBets == 100 then
  29. bethigh = not bethigh
  30. tempBets = bets
  31. end
  32. if balance > targetpf then stop() end
  33. if partialprofit > basereset then
  34. nextbet = basebet
  35. resetpartialprofit()
  36. end
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement