Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --@ Ultimate_Hunter_by_Keiichi_1.2%
- base = 0.00000010 --@ Put min bet.
- targetb = 0.015 --@ Put target balance.
- emergency = 1 - amount of x100 rolls missed before changing seed
- emls = 150 - after how many loses to start counting x100 rolls (leave both as it is if any concerns)
- ----------------
- prebet = base
- nextbet = prebet
- losecount = 0
- betcount = 0
- chance = 1.2
- bethigh = true
- chancecalc = 1.2
- startbal = balance
- curbal = balance
- bbnum = startbal / base
- lowestchance = 1.2
- lowestchanceS = 0
- lowestchanceR = 0
- lowestchanceP = 0
- maxlstreak = 0
- largebet = 0.00000000
- curbal = balance
- targetpercent = curbal / targetb * 100
- lastwinR = 0
- lastwinC = 0
- lastwinP = 0
- lastwinS = 0
- x100rolls = 0
- x100R = 0
- x100S = 0
- resetseed()
- covermessage ="................."
- ----------------
- function dobet()
- chancecalc = 1.2 - (currentstreak * -0.002265)
- chance = round(chancecalc,4)
- curbal = balance
- targetpercent = round(curbal / targetb * 100,2)
- print("\n---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------\n")
- print("Roll number - " .. betcount)
- print("\n---------")
- print("\nLoseStreak - " .. losecount)
- print("\n" .. covermessage)
- print("\n---------\n")
- print("Last x100 Bet Missed - Roll / Losestreak: ")
- print(x100R .. " / " .. x100S)
- print("Number of x100 Missed This Streak - " .. x100rolls)
- if x100rolls > 0 then
- print("\nLoseStreak from last x100 - " .. losecount - x100S)
- else
- print("\nLoseStreak from last x100 - 0")
- end
- print("\n---------\n")
- print("Target Balance - " .. targetb)
- print("% of Target Reached - " .. targetpercent .. "%")
- print("\n---------\n")
- print("Longest LoseStreak - " .. maxlstreak)
- print("Largest Profit from 1 bet - " .. largebet)
- print("\n---------\n")
- print("Lowest Chance Hunted - " .. lowestchance .. "%")
- print("With Roll / Profit / Losestreak: ")
- print(lowestchanceR .. " / " .. lowestchanceP .. " / " .. lowestchanceS)
- print("\n---------\n")
- print("Last Won Bet - Chance / Roll / Profit / Losestreak: ")
- print(lastwinC .. "% / " .. lastwinR .. " / " .. lastwinP .. " / " .. lastwinS)
- print("\n---------\n")
- if win then
- ching()
- nextbet = prebet
- lastwinR = lastBet.Roll
- lastwinC = lastBet.Chance
- lastwinP = lastBet.Profit
- lastwinS = lastBet.Nonce
- if lastBet.Chance < lowestchance then
- lowestchance = lastBet.Chance
- lowestchanceP = lastwinP
- lowestchanceR = lastwinR
- lowestchanceS = lastwinS
- end
- if lastBet.Profit > largebet then
- largebet = lastBet.Profit
- end
- losecount = 0
- betcount += 1
- x100rolls = 0
- resetseed()
- curbal = balance
- if curbal >= targetb then
- print("\nTARGET REACHED. GRATS")
- stop()
- end
- else
- if (lastBet.Roll > 99) then
- alarm()
- x100rolls += 1
- x100R = lastBet.Roll
- x100S = losecount
- print("\n---------\n")
- print("\n---------\n")
- print("\n" .. x100R .. "ROLLED ON " .. x100S .. "LOSESTREAK")
- print("\nDANGER, x100 ROLLED " .. x100rolls .. "TIMES")
- print("\n---------\n")
- print("\n---------\n")
- if (x100rolls >= emergency and losecount >= emls) then
- resetseed()
- print("\n---------\n")
- print("\nx100 ROLLED TOO MANY TIMES.. EMERGENSY!")
- print("\n---------\n")
- end
- end
- losecount += 1
- if losecount > maxlstreak then
- maxlstreak = losecount
- end
- betcount += 1
- nextbet = prebet
- end
- if (losecount > 1) then
- nextbet = round(previousbet * 1.0020,15)
- end
- if (losecount > 100) then
- nextbet = base * 1.3
- end
- if (losecount > 101) then
- nextbet = round(previousbet * 1.0035,15)
- end
- if (losecount > 130) then
- nextbet = base * 1.7
- end
- if (losecount > 131) then
- nextbet = round(previousbet * 1.0035,15)
- end
- if (losecount > 150) then
- nextbet = base * 2
- end
- if (losecount > 151) then
- nextbet = round(previousbet * 1.0035,15)
- end
- if (losecount > 180) then
- nextbet = base * 2.3
- end
- if (losecount > 181) then
- nextbet = round(previousbet * 1.0035,15)
- end
- if (losecount > 200) then
- nextbet = base * 2.5
- end
- if (losecount > 201) then
- nextbet = round(previousbet * 1.0035,15)
- end
- if (losecount > 230) then
- nextbet = base * 3
- end
- if (losecount > 231) then
- nextbet = round(previousbet * 1.0035,15)
- end
- if (losecount > 250) then
- nextbet = base * 3.3
- end
- if (losecount > 251) then
- nextbet = round(previousbet * 1.0035,15)
- end
- if (losecount > 300) then
- nextbet = base * 5
- end
- if (losecount > 301) then
- nextbet = round(previousbet * 1.0035,15)
- end
- if (losecount > 350) then
- nextbet = base * 9
- end
- if (losecount > 351) then
- nextbet = round(previousbet * 1.0035,15)
- end
- if (losecount > 400) then
- nextbet = base * 12
- end
- if (losecount > 401) then
- nextbet = round(previousbet * 1.0035,15)
- end
- if (losecount > 450) then
- nextbet = base * 13
- end
- if (losecount > 451) then
- nextbet = round(previousbet * 1.0035,15)
- end
- if (losecount > 485) then
- chance = 0.1
- nextbet = base * 17
- end
- if (losecount > 490) then
- chance = 0.09
- end
- if (losecount > 495) then
- chance = 0.08
- nextbet = base * 20
- end
- if (losecount > 498) then
- chance = 0.07
- end
- if (losecount > 502) then
- chance = 0.06
- end
- if (losecount > 505) then
- chance = 0.05
- nextbet = base * 24
- end
- if (losecount > 508) then
- chance = 0.04
- end
- if (losecount > 510) then
- chance = 0.03
- end
- if (losecount > 512) then
- chance = 0.02
- end
- if (losecount > 514) then
- nextbet = base * 35
- chance = 0.01
- end
- if (losecount > 516) then
- chance = 0.99
- nextbet = round(previousbet*1.012,15)
- end
- if (losecount > 600) then
- nextbet = round(previousbet*1.01045,15)
- end
- if (losecount > 700) then
- nextbet = round(previousbet*1.01,15)
- end
- ----------------------
- curbal = balance
- bbnum = curbal / base
- if bbnum >= 1402116 then
- covermessage = "YOUR BALANCE CAN COVER 1100+ REDS - NO RISK"
- elseif (bbnum >= 851852 and bbnum < 1402116) then
- covermessage = "YOUR BALANCE CAN COVER 1050-1100 REDS - ALMOST NO RISK"
- elseif (bbnum >= 517196 and bbnum < 851852) then
- covermessage = "YOUR BALANCE CAN COVER 1000-1050 REDS - ALMOST NO RISK"
- elseif (bbnum >= 314815 and bbnum < 517196) then
- covermessage = "YOUR BALANCE CAN COVER 950-1000 REDS - CAN BE RISKY IN VERY LONG RUN"
- elseif (bbnum >= 190476 and bbnum < 314815) then
- covermessage = "YOUR BALANCE CAN COVER 900-950 REDS - CAN BE RISKY IN LONG RUN"
- elseif (bbnum >= 115079 and bbnum < 190476) then
- covermessage = "YOUR BALANCE CAN COVER 850-900 REDS - CAN BE RISKY IN LONG RUN"
- elseif (bbnum >= 68783 and bbnum < 115079) then
- covermessage = "YOUR BALANCE CAN COVER 800-850 REDS - RISKY IN LONG RUN"
- elseif (bbnum >= 41005 and bbnum < 68783) then
- covermessage = "YOUR BALANCE CAN COVER 750-800 REDS - RISKY IN LONG RUN"
- elseif (bbnum >= 24339 and bbnum < 41005) then
- covermessage = "YOUR BALANCE CAN COVER 700-750 REDS - RISKY IN AVERAGE RUN"
- elseif (bbnum >= 14021 and bbnum < 24339) then
- covermessage = "YOUR BALANCE CAN COVER 650-700 REDS - RISKY IN AVERAGE RUN"
- elseif (bbnum >= 7937 and bbnum < 14021) then
- covermessage = "YOUR BALANCE CAN COVER 600-650 REDS - RISKY IN AVERAGE RUN"
- elseif (bbnum >= 4444 and bbnum < 7937) then
- covermessage = "YOUR BALANCE CAN COVER 550-600 REDS - RISKY IN AVERAGE RUN"
- elseif (bbnum >= 2646 and bbnum < 4444) then
- covermessage = "YOUR BALANCE CAN COVER 500-550 REDS - RISKY EVEN IN SHORT RUN"
- elseif (bbnum >= 1918 and bbnum < 2646) then
- covermessage = "YOUR BALANCE CAN COVER 450-500 REDS - RISKY EVEN IN SHORT RUN"
- elseif (bbnum >= 1288 and bbnum < 1918) then
- covermessage = "YOUR BALANCE CAN COVER 400-450 REDS - VERY RISKY EVEN IN SHORT RUN"
- elseif (bbnum >= 828 and bbnum < 1288) then
- covermessage = "YOUR BALANCE CAN COVER 350-400 REDS - VERY RISKY EVEN IN SHORT RUN"
- elseif (bbnum >= 569 and bbnum < 828) then
- covermessage = "YOUR BALANCE CAN COVER 300-350 REDS - TOO RISKY, MOST LIKELY WILL BUST. CARE"
- elseif (bbnum >= 386 and bbnum < 569) then
- covermessage = "YOUR BALANCE CAN COVER 250-300 REDS - TOO RISKY, MOST LIKELY WILL BUST. CARE"
- elseif (bbnum >= 262 and bbnum < 386) then
- covermessage = "YOUR BALANCE CAN COVER 200-250 REDS - TOO RISKY, WILL BUST VERY QUICKLY. CARE PLZ"
- elseif (bbnum < 262) then
- covermessage = "YOUR BALANCE CAN COVER LESS THAN 200 REDS - TOO RISKY TO PLAY, BETTER STOP THE SCRIPT"
- end
- end
- function round(num, numDecimalPlaces)
- local mult = 10^(numDecimalPlaces or 0)
- return math.floor(num * mult + 0.5) / mult
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment