Advertisement
Baliarta

Best wager v14

Apr 16th, 2023
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. --- Best wager v14
  2.  
  3.  
  4. div = 1e3 -- for safe mod set div = 1e4
  5.  
  6. basebet = 0.100021--balance/div
  7.  
  8. nam = 0
  9.  
  10. lam = 0
  11.  
  12. sart = 0
  13.  
  14. chance = 98
  15.  
  16. chance2 = 80
  17.  
  18. chance3 = 83.0
  19.  
  20. nextbet = basebet
  21.  
  22. ----------------------------------------
  23.  
  24. function dobet()
  25. if (win) then
  26. nam = nam + 1
  27. lam = 0
  28. else
  29. nam = 0
  30. lam = lam + 1
  31. chance = math.random( ( chance2 * 100 ), ( chance3 * 100 ) ) / 100
  32. end
  33.  
  34. if bets%2==0 then
  35. nextbet = previousbet * 1.7
  36. end
  37. sart = sart + lastBet.profit
  38. if sart > 0 then
  39. sart = 0
  40. nextbet = basebet
  41. chance = 88
  42. end
  43. if bets%3==0 then
  44. nextbet = previousbet * 1.27
  45. end
  46. if bets%5==0 then
  47. nextbet = previousbet * 1.7
  48. end
  49. if nam%15==0 and nam > 0 then
  50. bethigh = not bethigh
  51. end
  52. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement