Advertisement
Keiich

Gap_faucet_hunt_Keiichi

May 16th, 2019
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 22.41 KB | None | 0 0
  1. --Faucet_GAP_Hunter_2.9
  2. -------------------------------------------
  3. -------------------------------------------
  4.  
  5.  
  6. -- How many feet you have?
  7.  
  8. feet = 4
  9.  
  10. -- Wait till bot stops and tell u where to bet and what amount - claim the faucets and go.
  11.  
  12. -- If u want to hunt random chance just put it down instead of 0.
  13.  
  14. huntChance = 0.01
  15.  
  16. -- Wait till bot stops and tell u where to bet on that chance.
  17.  
  18.  
  19. ------------------------------------------
  20. targetB = 0.01
  21.  
  22. minBet = 0.00000010
  23.  
  24. wagerChance = 82.44
  25.  
  26. sound = true
  27. ------------------------------------------
  28.  
  29. autoBets = true
  30.  
  31. maxStreak = 8000
  32.  
  33. increaseOnLose = 1.3  -- (Huntchance * increaseOnLose)
  34.  
  35. waitTimeAdjust = 0.66  -- (100%) change to increase/decrease wait timers i.e. 1.2 - 120.
  36. ------------------------------------------
  37.  
  38. customHuntbet = false
  39.  
  40. betDevider = 1000
  41. ------------------------------------------
  42. --
  43. --
  44. --
  45. -------------------------------------------
  46. -------DON'T-TOUCH-ANYTHING-BELOW----------
  47. -------DON'T-TOUCH-ANYTHING-BELOW----------
  48. -------DON'T-TOUCH-ANYTHING-BELOW----------
  49. -------DON'T-TOUCH-ANYTHING-BELOW----------
  50. -------------------------------------------
  51. -------------------------------------------
  52. --
  53. --
  54. reset = true
  55. HUNT = false
  56. HUNTHigh = false
  57. HUNTLow = false
  58. HUNTStart = true
  59. HUNTbet = minBet
  60. loseCount = 0
  61. longestGap = 0
  62. huntChance1 = 0.09
  63. huntChance2 = 0.12
  64. huntChance3 = 0.14
  65. huntChance4 = 0.19
  66. huntChance5 = 0.24
  67. huntChance6 = 0.29
  68. huntChance7 = 0.36
  69. huntChance8 = 0.48
  70. huntChance9 = 0.71
  71. huntChance10 = 0.96
  72. huntChance11 = 1.43
  73. mustBet = HUNTbet
  74. huntRangeHigh1 = 99.99 - huntChance1
  75. huntRangeLow1 = huntChance1
  76. payout1 = 99 / huntChance1
  77. huntRangeHigh2 = 99.99 - huntChance2
  78. huntRangeLow2 = huntChance2
  79. payout2 = 99 / huntChance2
  80. huntRangeHigh3 = 99.99 - huntChance3
  81. huntRangeLow3 = huntChance3
  82. payout3 = 99 / huntChance3
  83. huntRangeHigh4 = 99.99 - huntChance4
  84. huntRangeLow4 = huntChance4
  85. payout4 = 99 / huntChance4
  86. huntRangeHigh5 = 99.99 - huntChance5
  87. huntRangeLow5 = huntChance5
  88. payout5 = 99 / huntChance5
  89. huntRangeHigh6 = 99.99 - huntChance6
  90. huntRangeLow6 = huntChance6
  91. payout6 = 99 / huntChance6
  92. huntRangeHigh7 = 99.99 - huntChance7
  93. huntRangeLow7 = huntChance7
  94. payout7 = 99 / huntChance7
  95. huntRangeHigh8 = 99.99 - huntChance8
  96. huntRangeLow8 = huntChance8
  97. payout8 = 99 / huntChance8
  98. huntRangeHigh9 = 99.99 - huntChance9
  99. huntRangeLow9 = huntChance9
  100. payout9 = 99 / huntChance9
  101. huntRangeHigh10 = 99.99 - huntChance10
  102. huntRangeLow10 = huntChance10
  103. payout10 = 99 / huntChance10
  104. huntRangeHigh11 = 99.99 - huntChance11
  105. huntRangeLow11 = huntChance11
  106. payout11 = 99 / huntChance11
  107.  
  108.  
  109.  
  110. waitTime1 = payout1 * 3.9 * waitTimeAdjust * (100 - (huntChance1 * 9))/100
  111. waitTime2 = payout2 * 3.9 * waitTimeAdjust * (100 - (huntChance2 * 9))/100
  112. waitTime3 = payout3 * 3.9 * waitTimeAdjust * (100 - (huntChance3 * 9))/100
  113. waitTime4 = payout4 * 3.9 * waitTimeAdjust * (100 - (huntChance4 * 9))/100
  114. waitTime5 = payout5 * 3.9 * waitTimeAdjust * (100 - (huntChance5 * 9))/100
  115. waitTime6 = payout6 * 3.9 * waitTimeAdjust * (100 - (huntChance6 * 9))/100
  116. waitTime7 = payout7 * 3.9 * waitTimeAdjust * (100 - (huntChance7 * 9))/100
  117. waitTime8 = payout8 * 3.9 * waitTimeAdjust * (100 - (huntChance8 * 9))/100
  118. waitTime9 = payout9 * 3.9 * waitTimeAdjust * (100 - (huntChance9 * 9))/100
  119. waitTime10 = payout10 * 3.9 * waitTimeAdjust * (100 - (huntChance10 * 9))/100
  120. waitTime11 = payout11 * 3.9 * waitTimeAdjust * (100 - (huntChance11 * 9))/100
  121.  
  122.  
  123. if reset then
  124.   timerHigh = 0
  125.   timerLow = 0
  126.   timerHigh1 = 0
  127.   timerLow1 = 0
  128.   timerHigh2 = 0
  129.   timerLow2 = 0
  130.   timerHigh3 = 0
  131.   timerLow3 = 0
  132.   timerHigh4 = 0
  133.   timerLow4 = 0
  134.   timerHigh5 = 0
  135.   timerLow5 = 0
  136.   timerHigh6 = 0
  137.   timerLow6 = 0
  138.   timerHigh7 = 0
  139.   timerLow7 = 0
  140.   timerHigh8 = 0
  141.   timerLow8 = 0
  142.   timerHigh9 = 0
  143.   timerLow9 = 0
  144.   timerHigh10 = 0
  145.   timerLow10 = 0
  146.   timerHigh11 = 0
  147.   timerLow11 = 0
  148.   sessionprofit = 0
  149. end
  150. bethigh = true
  151.  
  152.  
  153. ---------Rolls-To-Wait-------------
  154. preBet = minBet
  155. nextbet = preBet
  156.  
  157.  
  158. curBal = balance
  159.  
  160.  
  161. if huntChance > 0 then
  162.   payout = 99 / huntChance
  163.   huntRangeHigh = 99.99 - huntChance
  164.   huntRangeLow = huntChance
  165.   if huntChance < 1 then
  166.     waitTime = payout * 3.4 * waitTimeAdjust * (100 - (huntChance * 9))/100
  167.   else
  168.     if huntChance < 5 and huntChance >= 1 then
  169.       waitTime = payout * 3.6 * waitTimeAdjust * (100 - (huntChance * 6))/100
  170.     else
  171.       if huntChance < 8 and huntChance >= 5 then
  172.         waitTime = payout * 3.8 * waitTimeAdjust * (100 - (huntChance * 3))/100
  173.       else
  174.         if huntChance >= 8 then
  175.           waitTime = payout * 3.9 * waitTimeAdjust
  176.         end
  177.       end
  178.     end
  179.   end
  180.   maxL = maxStreak - waitTime
  181.   timerHigh = 0
  182.   timerLow = 0
  183.   multyC = 1 + ((huntChance * increaseOnLose) / 100)
  184.  
  185.   if customHuntbet then
  186.     HUNTbet = curBal / betDevider
  187.   else
  188.     HUNTbet = curBal / ((1 - (multyC ^ maxL)) / (1 - multyC))
  189.     mustBet = HUNTbet
  190.   end
  191.   if HUNTbet < minBet then
  192.     HUNTbet = minBet
  193.   end
  194.  
  195. end
  196.  
  197.  
  198.  
  199. ------------------------------------
  200. ------------------------------------
  201. ------------------------------------
  202. ------------------------------------
  203. ---------------DOBET----------------
  204. ------------------------------------
  205. ------------------------------------
  206. ------------------------------------
  207.  
  208. function dobet()
  209.   --resetseed()
  210.   ------------Last-Roll--------------
  211.   LBR = lastBet.Roll
  212.   LBID = lastBet.Id
  213.   LBP = lastBet.Profit
  214.   LBC = lastBet.Chance
  215.   LBN = lastBet.Nonce
  216.   -----------------------------------
  217.  
  218.  
  219.   ------------Prebets----------------
  220.   if not HUNT then
  221.     curBal = balance
  222.     sessionprofit = sessionprofit + LBP
  223.     if sessionprofit > 0.00000001 then
  224.       sessionprofit = 0.00000000
  225.     end
  226.     nextbet = preBet + ((((curBal) - (sessionprofit * 4444)) / 100000) + (curBal * 0.00000011675))
  227.     if nextbet > (preBet * 4) then
  228.       nextbet = preBet * 4
  229.     end
  230.     if nextbet < preBet * 1.03  then
  231.       nextbet = preBet
  232.     end
  233.     chance = wagerChance
  234.   end
  235.   -----------------------------------
  236.  
  237.   ------------COUNTERS---------------
  238.  
  239.   timerHigh += 1
  240.   timerLow += 1
  241.  
  242.  
  243.   timerHigh1 += 1
  244.   timerLow1 += 1
  245.   --
  246.   timerHigh2 += 1
  247.   timerLow2  += 1
  248.   --
  249.   timerHigh3 += 1
  250.   timerLow3  += 1
  251.   --
  252.   timerHigh4  += 1
  253.   timerLow4 += 1
  254.   --
  255.   timerHigh5 += 1
  256.   timerLow5 += 1
  257.   --
  258.   timerHigh6 += 1
  259.   timerLow6 += 1
  260.   --
  261.   timerHigh7 += 1
  262.   timerLow7 += 1
  263.   --
  264.   timerHigh8 += 1
  265.   timerLow8 += 1
  266.   --
  267.   timerHigh9 += 1
  268.   timerLow9 += 1
  269.   --
  270.   timerHigh10 += 1
  271.   timerLow10 += 1
  272.   --
  273.   timerHigh11 += 1
  274.   timerLow11 += 1
  275.  
  276.  
  277.  
  278.   -------Counters-Resets-High---------
  279.   if LBR > huntRangeHigh then
  280.   if timerHigh > longestGap then
  281.   longestGap = timerHigh
  282.   end
  283.     timerHigh = 0
  284.   end
  285.  
  286.   if LBR < huntRangeLow then
  287.   if timerLow > longestGap then
  288.   longestGap = timerLow
  289.   end
  290.     timerLow = 0
  291.   end
  292.  
  293.   if LBR > huntRangeHigh1 then
  294.     timerHigh1 = 0
  295.   end
  296.  
  297.   if LBR < huntRangeLow1 then
  298.     timerLow1 = 0
  299.   end
  300.  
  301.   if LBR > huntRangeHigh2 then
  302.     timerHigh2 = 0
  303.   end
  304.  
  305.   if LBR < huntRangeLow2 then
  306.     timerLow2 = 0
  307.   end
  308.  
  309.   if LBR > huntRangeHigh3 then
  310.     timerHigh3 = 0
  311.   end
  312.  
  313.   if LBR < huntRangeLow3 then
  314.     timerLow3 = 0
  315.   end
  316.  
  317.   if LBR > huntRangeHigh4 then
  318.     timerHigh4 = 0
  319.   end
  320.  
  321.   if LBR < huntRangeLow4 then
  322.     timerLow4 = 0
  323.   end
  324.  
  325.   if LBR > huntRangeHigh5 then
  326.     timerHigh5 = 0
  327.   end
  328.  
  329.   if LBR < huntRangeLow5 then
  330.     timerLow5 = 0
  331.   end
  332.  
  333.   if LBR > huntRangeHigh6 then
  334.     timerHigh6 = 0
  335.   end
  336.  
  337.   if LBR < huntRangeLow6 then
  338.     timerLow6 = 0
  339.   end
  340.  
  341.   if LBR > huntRangeHigh7 then
  342.     timerHigh7 = 0
  343.   end
  344.  
  345.   if LBR < huntRangeLow7 then
  346.     timerLow7 = 0
  347.   end
  348.  
  349.   if LBR > huntRangeHigh8 then
  350.     timerHigh8 = 0
  351.   end
  352.  
  353.   if LBR < huntRangeLow8 then
  354.     timerLow8 = 0
  355.   end
  356.  
  357.   if LBR > huntRangeHigh9 then
  358.     timerHigh9 = 0
  359.   end
  360.  
  361.   if LBR < huntRangeLow9 then
  362.     timerLow9 = 0
  363.   end
  364.  
  365.   if LBR > huntRangeHigh10 then
  366.     timerHigh10 = 0
  367.   end
  368.  
  369.   if LBR < huntRangeLow10 then
  370.     timerLow10 = 0
  371.   end
  372.  
  373.   if LBR > huntRangeHigh11 then
  374.     timerHigh11 = 0
  375.   end
  376.  
  377.   if LBR < huntRangeLow11 then
  378.     timerLow11 = 0
  379.   end
  380.  
  381.  
  382.   -------------Prints----------------
  383.   print("......")
  384.   print("......")
  385.   print("......")
  386.   print("......")
  387.   print("......")
  388.   print("......")
  389.   print("......")
  390.  
  391.   if huntChance > 0 then
  392.     print("\nHuntChance: " .. huntChance .. "% || Payout: x" .. string.format("%3.1f",payout) .. " || Hunt: >" .. (huntRangeHigh * 100) .. " or <" .. (huntRangeLow * 100) )
  393.     print("\nGAP HIGH: " .. timerHigh .. " of " ..  string.format("%3.0f",waitTime))
  394.     print("\nGAP LOW: " .. timerLow .. " of " ..  string.format("%3.0f",waitTime))
  395.     print("\nHuntbet = " .. string.format("%3.8f",HUNTbet) .. " (" .. string.format("%3.8f",mustBet) .. ")")
  396.     print("\nMulty = " .. multyC .. " || Max losestreak = " .. maxStreak .. " (" .. string.format("%3.0f",maxL) .. ")")
  397.     print("\nLongest GAP = " .. string.format("%3.0f",longestGap))
  398.     print("......")
  399.  
  400.  
  401.  
  402.     if timerHigh >= waitTime and not HUNT then
  403.       if not autoBets then
  404.         print("\nGO HUNT HIGH " .. huntChance .. "%")
  405.         ching()
  406.         stop()
  407.       else
  408.         HUNT = true
  409.         HUNTHigh = true
  410.         HUNTLow = false
  411.       end
  412.     end
  413.  
  414.  
  415.     if timerLow >= waitTime and not HUNT then
  416.       if not autoBets then
  417.         print("\nGO HUNT LOW " .. huntChance .. "%")
  418.         ching()
  419.         stop()
  420.       else
  421.         HUNT = true
  422.         HUNTLow = true
  423.         HUNTHigh = false
  424.       end
  425.     end
  426.  
  427.  
  428.   else
  429.  
  430.     if feet == 1 then
  431.       print("\nFaucet For Level 1 ")
  432.       print("......")
  433.       print("Chance: " .. huntChance2 .. "%")
  434.       print("\nGAP HIGH: " .. timerHigh2 .. " of " ..  string.format("%3.0f",waitTime2))
  435.       print("\nGAP LOW: " .. timerLow2 .. " of " ..  string.format("%3.0f",waitTime2))
  436.       print("......")
  437.       print("Chance: " .. huntChance5 .. "%")
  438.       print("\nGAP HIGH: " .. timerHigh5 .. " of " ..  string.format("%3.0f",waitTime5))
  439.       print("\nGAP LOW: " .. timerLow5 .. " of " ..  string.format("%3.0f",waitTime5))
  440.       print("......")
  441.       if timerHigh2 >= waitTime2 then
  442.         print("\nGO HUNT HIGH " .. huntChance2 .. "% with 250 sat")
  443.         ching()
  444.         stop()
  445.       end
  446.       if timerLow2 >= waitTime2 then
  447.         print("\nGO HUNT LOW " .. huntChance2 .. "% with 250 sat")
  448.         ching()
  449.         stop()
  450.       end
  451.       if timerHigh5 >= waitTime5 then
  452.         print("\nGO HUNT HIGH " .. huntChance5 .. "% with 500 sat")
  453.         ching()
  454.         stop()
  455.       end
  456.       if timerLow5 >= waitTime5 then
  457.         print("\nGO HUNT LOW " .. huntChance5 .. "% with 500 sat")
  458.         ching()
  459.         stop()
  460.       end
  461.     end
  462.  
  463.  
  464.     if feet == 2 then
  465.       print("\nFaucet For Level 2 ")
  466.       print("......")
  467.       print("Chance: " .. huntChance1 .. "%")
  468.       print("\nGAP HIGH: " .. timerHigh1 .. " of " ..  string.format("%3.0f",waitTime1))
  469.       print("\nGAP LOW: " .. timerLow1 .. " of " ..  string.format("%3.0f",waitTime1))
  470.       print("......")
  471.       print("Chance: " .. huntChance2 .. "%")
  472.       print("\nGAP HIGH: " .. timerHigh2 .. " of " ..  string.format("%3.0f",waitTime2))
  473.       print("\nGAP LOW: " .. timerLow2 .. " of " ..  string.format("%3.0f",waitTime2))
  474.       print("......")
  475.       print("Chance: " .. huntChance5 .. "%")
  476.       print("\nGAP HIGH: " .. timerHigh5 .. " of " ..  string.format("%3.0f",waitTime5))
  477.       print("\nGAP LOW: " .. timerLow5 .. " of " ..  string.format("%3.0f",waitTime5))
  478.       print("......")
  479.       print("Chance: " .. huntChance8 .. "%")
  480.       print("\nGAP HIGH: " .. timerHigh8 .. " of " ..  string.format("%3.0f",waitTime8))
  481.       print("\nGAP LOW: " .. timerLow8 .. " of " ..  string.format("%3.0f",waitTime8))
  482.       print("......")
  483.       if timerHigh1 >= waitTime1 then
  484.         print("\nGO HUNT HIGH " .. huntChance1 .. "% with 200 sat")
  485.         ching()
  486.         stop()
  487.       end
  488.       if timerLow1 >= waitTime1 then
  489.         print("\nGO HUNT LOW " .. huntChance1 .. "% with 200 sat")
  490.         ching()
  491.         stop()
  492.       end
  493.       if timerHigh2 >= waitTime2 then
  494.         print("\nGO HUNT HIGH " .. huntChance2 .. "% with 250 sat")
  495.         ching()
  496.         stop()
  497.       end
  498.       if timerLow2 >= waitTime2 then
  499.         print("\nGO HUNT LOW " .. huntChance2 .. "% with 250 sat")
  500.         ching()
  501.         stop()
  502.       end
  503.       if timerHigh5 >= waitTime5 then
  504.         print("\nGO HUNT HIGH " .. huntChance5 .. "% with 500 sat")
  505.         ching()
  506.         stop()
  507.       end
  508.       if timerLow5 >= waitTime5 then
  509.         print("\nGO HUNT LOW " .. huntChance5 .. "% with 500 sat")
  510.         ching()
  511.         stop()
  512.       end
  513.       if timerHigh8 >= waitTime8 then
  514.         print("\nGO HUNT HIGH " .. huntChance8 .. "% with 1000 sat")
  515.         ching()
  516.         stop()
  517.       end
  518.       if timerLow8 >= waitTime8 then
  519.         print("\nGO HUNT LOW " .. huntChance8 .. "% with 1000 sat")
  520.         ching()
  521.         stop()
  522.       end
  523.     end
  524.  
  525.     if feet == 3 then -- 1 2 4 5 8 10
  526.       print("\nFaucet For Level 3 ")
  527.       print("......")
  528.       print("Chance: " .. huntChance1 .. "%")
  529.       print("\nGAP HIGH: " .. timerHigh1 .. " of " ..  string.format("%3.0f",waitTime1))
  530.       print("\nGAP LOW: " .. timerLow1 .. " of " ..  string.format("%3.0f",waitTime1))
  531.       print("......")
  532.       print("Chance: " .. huntChance2 .. "%")
  533.       print("\nGAP HIGH: " .. timerHigh2 .. " of " ..  string.format("%3.0f",waitTime2))
  534.       print("\nGAP LOW: " .. timerLow2 .. " of " ..  string.format("%3.0f",waitTime2))
  535.       print("......")
  536.       print("Chance: " .. huntChance4 .. "%")
  537.       print("\nGAP HIGH: " .. timerHigh4 .. " of " ..  string.format("%3.0f",waitTime4))
  538.       print("\nGAP LOW: " .. timerLow4 .. " of " ..  string.format("%3.0f",waitTime4))
  539.       print("......")
  540.       print("Chance: " .. huntChance5 .. "%")
  541.       print("\nGAP HIGH: " .. timerHigh5 .. " of " ..  string.format("%3.0f",waitTime5))
  542.       print("\nGAP LOW: " .. timerLow5 .. " of " ..  string.format("%3.0f",waitTime5))
  543.       print("......")
  544.       print("Chance: " .. huntChance8 .. "%")
  545.       print("\nGAP HIGH: " .. timerHigh8 .. " of " ..  string.format("%3.0f",waitTime8))
  546.       print("\nGAP LOW: " .. timerLow8 .. " of " ..  string.format("%3.0f",waitTime8))
  547.       print("......")
  548.       print("Chance: " .. huntChance10 .. "%")
  549.       print("\nGAP HIGH: " .. timerHigh10 .. " of " ..  string.format("%3.0f",waitTime10))
  550.       print("\nGAP LOW: " .. timerLow10 .. " of " ..  string.format("%3.0f",waitTime10))
  551.       print("......")
  552.       if timerHigh1 >= waitTime1 then
  553.         print("\nGO HUNT HIGH " .. huntChance1 .. "% with 200 sat")
  554.         ching()
  555.         stop()
  556.       end
  557.       if timerLow1 >= waitTime1 then
  558.         print("\nGO HUNT LOW " .. huntChance1 .. "% with 200 sat")
  559.         ching()
  560.         stop()
  561.       end
  562.       if timerHigh2 >= waitTime2 then
  563.         print("\nGO HUNT HIGH " .. huntChance2 .. "% with 250 sat")
  564.         ching()
  565.         stop()
  566.       end
  567.       if timerLow2 >= waitTime2 then
  568.         print("\nGO HUNT LOW " .. huntChance2 .. "% with 250 sat")
  569.         ching()
  570.         stop()
  571.       end
  572.       if timerHigh4 >= waitTime4 then
  573.         print("\nGO HUNT HIGH " .. huntChance4 .. "% with 400 sat")
  574.         ching()
  575.         stop()
  576.       end
  577.       if timerLow4 >= waitTime4 then
  578.         print("\nGO HUNT LOW " .. huntChance4 .. "% with 400 sat")
  579.         ching()
  580.         stop()
  581.       end
  582.       if timerHigh5 >= waitTime5 then
  583.         print("\nGO HUNT HIGH " .. huntChance5 .. "% with 500 sat")
  584.         ching()
  585.         stop()
  586.       end
  587.       if timerLow5 >= waitTime5 then
  588.         print("\nGO HUNT LOW " .. huntChance5 .. "% with 500 sat")
  589.         ching()
  590.         stop()
  591.       end
  592.       if timerHigh8 >= waitTime8 then
  593.         print("\nGO HUNT HIGH " .. huntChance8 .. "% with 1000 sat")
  594.         ching()
  595.         stop()
  596.       end
  597.       if timerLow8 >= waitTime8 then
  598.         print("\nGO HUNT LOW " .. huntChance8 .. "% with 1000 sat")
  599.         ching()
  600.         stop()
  601.       end
  602.       if timerHigh10 >= waitTime10 then
  603.         print("\nGO HUNT HIGH " .. huntChance10 .. "% with 2000 sat")
  604.         ching()
  605.         stop()
  606.       end
  607.       if timerLow10 >= waitTime10 then
  608.         print("\nGO HUNT LOW " .. huntChance10 .. "% with 2000 sat")
  609.         ching()
  610.         stop()
  611.       end
  612.     end
  613.  
  614.     if feet == 4 then -- 1 2 3 4 5 6 7 8 9 11
  615.       print("\nFaucet For Level 4 ")
  616.       print("......")
  617.       print("Chance: " .. huntChance1 .. "%")
  618.       print("\nGAP HIGH: " .. timerHigh1 .. " of " ..  string.format("%3.0f",waitTime1))
  619.       print("\nGAP LOW: " .. timerLow1 .. " of " ..  string.format("%3.0f",waitTime1))
  620.       print("......")
  621.       print("Chance: " .. huntChance2 .. "%")
  622.       print("\nGAP HIGH: " .. timerHigh2 .. " of " ..  string.format("%3.0f",waitTime2))
  623.       print("\nGAP LOW: " .. timerLow2 .. " of " ..  string.format("%3.0f",waitTime2))
  624.       print("......")
  625.       print("Chance: " .. huntChance3 .. "%")
  626.       print("\nGAP HIGH: " .. timerHigh3 .. " of " ..  string.format("%3.0f",waitTime3))
  627.       print("\nGAP LOW: " .. timerLow3 .. " of " ..  string.format("%3.0f",waitTime3))
  628.       print("......")
  629.       print("Chance: " .. huntChance5 .. "%")
  630.       print("\nGAP HIGH: " .. timerHigh5 .. " of " ..  string.format("%3.0f",waitTime5))
  631.       print("\nGAP LOW: " .. timerLow5 .. " of " ..  string.format("%3.0f",waitTime5))
  632.       print("......")
  633.       print("Chance: " .. huntChance6 .. "%")
  634.       print("\nGAP HIGH: " .. timerHigh6 .. " of " ..  string.format("%3.0f",waitTime6))
  635.       print("\nGAP LOW: " .. timerLow6 .. " of " ..  string.format("%3.0f",waitTime6))
  636.       print("......")
  637.       print("Chance: " .. huntChance7 .. "%")
  638.       print("\nGAP HIGH: " .. timerHigh7 .. " of " ..  string.format("%3.0f",waitTime7))
  639.       print("\nGAP LOW: " .. timerLow7 .. " of " ..  string.format("%3.0f",waitTime7))
  640.       print("......")
  641.       print("Chance: " .. huntChance8 .. "%")
  642.       print("\nGAP HIGH: " .. timerHigh8 .. " of " ..  string.format("%3.0f",waitTime8))
  643.       print("\nGAP LOW: " .. timerLow8 .. " of " ..  string.format("%3.0f",waitTime8))
  644.       print("......")
  645.       print("Chance: " .. huntChance9 .. "%")
  646.       print("\nGAP HIGH: " .. timerHigh9 .. " of " ..  string.format("%3.0f",waitTime9))
  647.       print("\nGAP LOW: " .. timerLow9 .. " of " ..  string.format("%3.0f",waitTime9))
  648.       print("......")
  649.       print("Chance: " .. huntChance11 .. "%")
  650.       print("\nGAP HIGH: " .. timerHigh11.. " of " ..  string.format("%3.0f",waitTime11))
  651.       print("\nGAP LOW: " .. timerLow11 .. " of " ..  string.format("%3.0f",waitTime11))
  652.       print("......")
  653.       if timerHigh1 >= waitTime1 then
  654.         print("\nGO HUNT HIGH " .. huntChance1 .. "% with 200 sat")
  655.         ching()
  656.         stop()
  657.       end
  658.       if timerLow1 >= waitTime1 then
  659.         print("\nGO HUNT LOW " .. huntChance1 .. "% with 200 sat")
  660.         ching()
  661.         stop()
  662.       end
  663.       if timerHigh2 >= waitTime2 then
  664.         print("\nGO HUNT HIGH " .. huntChance2 .. "% with 250 sat")
  665.         ching()
  666.         stop()
  667.       end
  668.       if timerLow2 >= waitTime2 then
  669.         print("\nGO HUNT LOW " .. huntChance2 .. "% with 250 sat")
  670.         ching()
  671.         stop()
  672.       end
  673.       if timerHigh3 >= waitTime3 then
  674.         print("\nGO HUNT HIGH " .. huntChance3 .. "% with 300 sat")
  675.         ching()
  676.         stop()
  677.       end
  678.       if timerLow3 >= waitTime3 then
  679.         print("\nGO HUNT LOW " .. huntChance3 .. "% with 300 sat")
  680.         ching()
  681.         stop()
  682.       end
  683.       if timerHigh5 >= waitTime5 then
  684.         print("\nGO HUNT HIGH " .. huntChance5 .. "% with 500 sat")
  685.         ching()
  686.         stop()
  687.       end
  688.       if timerLow5 >= waitTime5 then
  689.         print("\nGO HUNT LOW " .. huntChance5 .. "% with 500 sat")
  690.         ching()
  691.         stop()
  692.       end
  693.       if timerHigh6 >= waitTime6 then
  694.         print("\nGO HUNT HIGH " .. huntChance6 .. "% with 600 sat")
  695.         ching()
  696.         stop()
  697.       end
  698.       if timerLow6 >= waitTime6 then
  699.         print("\nGO HUNT LOW " .. huntChance6 .. "% with 600 sat")
  700.         ching()
  701.         stop()
  702.       end
  703.       if timerHigh7 >= waitTime7 then
  704.         print("\nGO HUNT HIGH " .. huntChance7 .. "% with 750 sat")
  705.         ching()
  706.         stop()
  707.       end
  708.       if timerLow7 >= waitTime7 then
  709.         print("\nGO HUNT LOW " .. huntChance7 .. "% with 750 sat")
  710.         ching()
  711.         stop()
  712.       end
  713.       if timerHigh8 >= waitTime8 then
  714.         print("\nGO HUNT HIGH " .. huntChance8 .. "% with 1000 sat")
  715.         ching()
  716.         stop()
  717.       end
  718.       if timerLow8 >= waitTime8 then
  719.         print("\nGO HUNT LOW " .. huntChance8 .. "% with 1000 sat")
  720.         ching()
  721.         stop()
  722.       end
  723.       if timerHigh9 >= waitTime9 then
  724.         print("\nGO HUNT HIGH " .. huntChance9 .. "% with 1500 sat")
  725.         ching()
  726.         stop()
  727.       end
  728.       if timerLow9 >= waitTime9 then
  729.         print("\nGO HUNT LOW " .. huntChance9 .. "% with 1500 sat")
  730.         ching()
  731.         stop()
  732.       end
  733.       if timerHigh11 >= waitTime11 then
  734.         print("\nGO HUNT HIGH " .. huntChance11 .. "% with 3000 sat")
  735.         ching()
  736.         stop()
  737.       end
  738.       if timerLow11 >= waitTime11 then
  739.         print("\nGO HUNT LOW " .. huntChance11 .. "% with 3000 sat")
  740.         ching()
  741.         stop()
  742.       end
  743.     end
  744.   end
  745.  
  746.   if HUNT then
  747.  
  748.     if HUNTStart then
  749.     alarm()
  750.       curBal = balance
  751.       if customHuntbet then
  752.         HUNTbet = curBal / betDevider
  753.       else
  754.         HUNTbet = curBal / ((1 - (multyC ^ maxL)) / (1 - multyC))
  755.         mustBet = HUNTbet
  756.       end
  757.       if HUNTbet < minBet then
  758.         HUNTbet = minBet
  759.       end
  760.       nextbet = HUNTbet
  761.       if HUNTHigh then
  762.         bethigh = true
  763.       end
  764.       if HUNTLow then
  765.         bethigh = false
  766.       end
  767.       chance = huntChance
  768.       HUNTStart = false
  769.     end
  770.  
  771.     if win and LBC < 50 then
  772.     if sound then
  773.       ching()
  774.       end
  775.      
  776.       HUNT = false
  777.       HUNTHigh = false
  778.       HUNTLow = false
  779.       HUNTStart = true
  780.       nextbet = preBet
  781.       chance = wagerChance
  782.       loseCount = 0
  783.     else
  784.  
  785.       loseCount += 1
  786.  
  787.       --if loseCount >= payout / 4.3 then
  788.        -- HUNTbet = HUNTbet * 1.414
  789.        -- loseCount = 0
  790.      -- end
  791.       if loseCount >= 2 then
  792.       nextbet = previousbet * multyC
  793.       end
  794.     end
  795.  
  796.  
  797.   end
  798.   curBal = balance
  799.   if nextbet > curBal then
  800.     stop()
  801.   end
  802.   if curBal < minBet then
  803.     stop()
  804.   end
  805. if curBal >= targetB then
  806. stop()
  807. end
  808. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement