Advertisement
Keiich

try_Again_New_1.0.4

Apr 23rd, 2019
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.01 KB | None | 0 0
  1. --TRY_AGAIN_1.0.1
  2.  
  3.  
  4.  
  5. --SETTINGS--
  6.  
  7. minBet = 0.0055
  8.  
  9. targetBalance = 50.001
  10.  
  11. bethigh = false
  12.  
  13. -----------
  14.  
  15.  
  16.  
  17.  
  18. ---VARS---
  19.  
  20. chanceBase = 1.00
  21.  
  22.  
  23. chanceCalc = chanceBase
  24. chance = chanceCalc
  25.  
  26.  
  27. multiplier1 = 1.024
  28. multiplier2 = 1.115
  29. multiplier3 = 1.044
  30. multiplier4 = 0.096
  31.  
  32. chanceMulti1 =  0.94
  33. chanceMulti2 =  1.24
  34. chanceMulti3 =  1.0164
  35.  
  36. curBal = balance
  37. loseCount = 0
  38. seedCount = 0
  39.  
  40. sessionProfit = 0
  41.  
  42.  
  43. nextbet = minBet
  44.  
  45. ----DOBET----
  46.  
  47. function dobet()
  48.  
  49.  
  50.   curBal = balance
  51.  
  52.  
  53.   ------------Last-Roll--------------
  54.   LBR = lastBet.Roll
  55.   LBID = lastBet.Id
  56.   LBP = lastBet.Profit
  57.   LBC = lastBet.Chance
  58.   LBN = lastBet.Nonce
  59.   -----------------------------------
  60.  
  61.   sessionProfit = sessionProfit + LBP
  62.  
  63.   if sessionProfit > 0.00000001 then
  64.     sessionProfit = 0.00000000
  65.   end
  66.  
  67.  
  68.   if win then
  69.  
  70.     ching()
  71.  
  72.     seedCount += 1
  73.  
  74.     if seedCount >= 2 then
  75.       resetseed()
  76.       seedCount = 0
  77.     end
  78.  
  79.  
  80.     loseCount = 0
  81.  
  82.     chanceCalc = chanceBase
  83.  
  84.  
  85.     if sessionProfit < 0 then
  86.  
  87.       nextbet = previousbet * multiplier4
  88.      
  89.       if nextbet >= minBet * 6 then
  90.       nextbet = minBet * 6
  91.       end
  92.      
  93.     else
  94.  
  95.       nextbet = minBet
  96.  
  97.     end
  98.  
  99.  
  100.     if curBal >= targetBalance then
  101.       print("Target Reached")
  102.       stop()
  103.     end
  104.  
  105.  
  106.   else
  107.  
  108.     loseCount += 1
  109.  
  110.     if loseCount < 38 then
  111.       if loseCount < 21 then
  112.        
  113.         nextbet = previousbet * multiplier1
  114.       else
  115.        
  116.         nextbet = previousbet * multiplier2
  117.       end
  118.     else
  119.      
  120.       nextbet = previousbet * multiplier3
  121.     end
  122.  
  123.     if loseCount < 36 then
  124.       if loseCount < 24 then
  125.         chanceCalc = chanceCalc * chanceMulti1
  126.        
  127.       else
  128.         chanceCalc = chanceCalc * chanceMulti2
  129.        
  130.       end
  131.     else
  132.       chanceCalc = chanceCalc * chanceMulti3
  133.      
  134.     end
  135.  
  136.  
  137.  
  138.   end
  139.  
  140.   chance = chanceCalc
  141.  
  142.   if nextbet < minBet then
  143.     nextbet = minBet
  144.   end
  145.  
  146.   if nextbet > curBal then
  147.     stop()
  148.   end
  149.  
  150. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement