Advertisement
Baliarta

CENGLAY

Apr 11th, 2024
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. --#Cenglay
  2.  
  3. chance = 98
  4. basebet = 0.001
  5. nextbet = basebet
  6. wcount = 0
  7. lcount = 0
  8. btarget = balance * 2
  9. profitc = 0
  10.  
  11. function dobet()
  12.  
  13. if btarget <= balance then
  14. stop()
  15. end
  16.  
  17. if win then
  18.  
  19. wcount = wcount + 1
  20. lcount = 0
  21. else
  22. if bets%3==0 then nextbet = previousbet + (previousbet * (50/ 100)) end
  23. lcount = lcount + 1
  24. end
  25.  
  26. if wcount == 2 then
  27. chance = 33--math.random(22,33)
  28. wcount = 0
  29. end
  30.  
  31. if lcount == 1 then
  32. chance = 12.38
  33. end
  34.  
  35. if lcount == 2 then
  36. chance = 12.38
  37. end
  38.  
  39. if lcount == 3 then
  40. chance = 12.38
  41. end
  42.  
  43. if lcount == 4 then
  44. chance = 66
  45. end
  46.  
  47. if lcount == 5 then
  48. chance = math.random(90,91)
  49. end
  50. profitc = profitc + lastBet.profit
  51. if profitc > 0 and win then
  52. profitc = 0
  53. nextbet = basebet
  54. chance = 12.38--math.random(90,91)
  55. end
  56. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement