Advertisement
Baliarta

WAGER BONUS PROFIT

Mar 26th, 2024
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. chance = 98
  2. basebet = balance / 1000
  3. minbet = 0.000088
  4. wagered = 0
  5. nextbet = basebet
  6. betlose = 0
  7. betsafe = false
  8.  
  9. function dobet()
  10. betlose = betlose + currentprofit
  11. if betlose >= 0 then
  12. bethigh = not bethigh
  13. betsafe = false
  14. betlose = 0
  15. nextbet = basebet
  16. chance = 98
  17. else
  18. if not betsafe then chance = 2 end
  19. betsafe = true
  20. end
  21. if betsafe then
  22. if bets%3==0 then
  23. chance = chance + 0.05
  24. end
  25. nextbet = math.abs(betlose)/((99/chance)-1)
  26. end
  27. if nextbet < minbet then nextbet = minbet end
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement