Advertisement
Baliarta

Duino

Feb 19th, 2023
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. -- ••• upgrade gateway versi WDB - # @duinobet -
  2.  
  3. targetProfit = 50 -- ( Amt )
  4. limiteLose = 5 -- ( % )
  5. resetSeed = 250
  6. bethigh = true
  7. --resetall()
  8. basebet = 0.0000001
  9. prebet = 0.00000001
  10. ifProfit = 0.00000001
  11. gateway = 4
  12. passroll = 4
  13. multipler = 1.42
  14. winChance = {
  15. 49,
  16. 49
  17. }
  18. loseChance = {
  19. 14,
  20. 28
  21. }
  22.  
  23. ws = 0
  24. ls = 0
  25. gocount = 0
  26. fbcount = 0
  27. tmplose = 0
  28. cprofit = 0
  29. betcount = 0
  30. swChance = false
  31. nextbet = prebet
  32. passcount = passroll
  33. chance = winChance[2]
  34. target = balance+targetProfit
  35. limite = balance*(limiteLose/100)
  36.  
  37. function dobet()
  38. if balance>target then
  39. log(" # target Profit reached !!")
  40. stop()
  41. end
  42. if previousbet>limite then
  43. log(" # pause limiteLose !! ")
  44. stop()
  45. end
  46. betcount = betcount + 1
  47. cprofit = cprofit + currentprofit
  48. if win then
  49. nextbet = prebet
  50. ws = ws + 1
  51. ls = 0
  52. chance = math.random(winChance[1]*100,winChance[2]*100)/100
  53. swChance = false
  54. if (cprofit > ifProfit) and win then
  55. gocount = 0
  56. fbcount = 0
  57. cprofit = 0
  58. tmplose = 0
  59. nextbet = prebet
  60. passcount = passroll
  61. else
  62. gocount = 0
  63. nextbet = prebet
  64. passcount = passroll
  65. end
  66. if betcount>resetSeed then
  67. log(" # resetseed !!")
  68. resetseed()
  69. betcount = 0
  70. end
  71. else
  72. ls = ls + 1
  73. ws = 0
  74. chance = math.random(loseChance[1]*100,loseChance[2]*100)/100
  75. swChance = true
  76. if passcount==0 then
  77. if gocount==gateway then
  78. nextbet = basebet*multipler
  79. gocount = 0
  80. passcount = passroll
  81. fbcount = fbcount + 1
  82. else
  83. if tmplose==0 then
  84. nextbet = basebet*multipler
  85. tmplose = nextbet
  86. else
  87. nextbet = tmplose*multipler
  88. tmplose = nextbet
  89. end
  90. end
  91. gocount = gocount + 1
  92. else
  93. passcount = passcount - 1
  94. nextbet = prebet
  95. end
  96. end
  97. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement