Advertisement
Baliarta

Hoki#1456

Apr 15th, 2024
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. chance = 98
  2. chin = {1,5,2,10,3,5,4,10,5,10,17}
  3. chindex = 1
  4. first_index = false
  5. basebet = 0.000015
  6. minbet = 1e-8
  7. wagered = 0
  8. nextbet = basebet
  9. betlose = 0
  10. betsafe = false
  11.  
  12. function dobet()
  13. betlose = betlose + currentprofit
  14. if betlose >= 0 then
  15. betsafe = false
  16. betlose = 0
  17. nextbet = basebet
  18. chance = 80
  19. resetpartialprofit()
  20. else
  21. if not betsafe then chance = 5 end
  22. betsafe = true
  23. end
  24. if betsafe then
  25. if bets%3==0 then
  26. chindex = math.random(1, #chin)
  27. chance = chin[chindex]
  28. multi = 1 + ((chance/100) * 2)
  29. nextbet = previousbet * multi
  30. end
  31. multi = 1 + ((chance/100) * 1.28)
  32. nextbet = previousbet * multi
  33. --nextbet = math.abs(betlose)/((99/chance)-1)
  34. end
  35. if nextbet < minbet then nextbet = minbet end
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement