Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --@ New_Ultimate_Hunter_by_Keiichi_upd
- ------------Settings------------------
- reset = false --@ switch to false, unless u want to reset the roll statistic. (Must be true for the first start)
- base = 0.00000011 --@ Put min bet.
- targetb = 0.01 --@ Put target balance.
- sound = true --@ set False to remove the sound on win.
- risk = 0.77--@ from 0.1 (low) to 1 (high). Reduce waittime for Hunting start. 0.75 - Default
- basechance = 44.44 --@ no multy
- huntbetmulty = 1.00--@ increase starting bet for Hunting. 1.00 - Default
- -----------------------------------
- ---------Statistics----------------
- if reset then
- x25l = 0 --@ 3.9600%
- x25h = 0 --@ 3.9600%
- --
- x50l = 0 --@ 1.9800%
- x50h = 0 --@ 1.9800%
- --
- x100l = 0 --@ 0.9900%
- x100h = 0 --@ 0.9900%
- --
- x225l = 0 --@ 0.4400%
- x225h = 0 --@ 0.4400%
- --
- x450l = 0 --@ 0.2200%
- x450h = 0 --@ 0.2200%
- --
- x990l = 0 --@ 0.1000%
- x990h = 0 --@ 0.1000%
- --
- x1414l = 0 --@ 0.0700%
- x1414h = 0 --@ 0.0700%
- --
- x3300l = 0 --@ 0.0300%
- x3300h = 0 --@ 0.0300%
- --
- x9900l = 0 --@ 0.0100%
- x9900h = 0 --@ 0.0100%
- end
- -----------------------------------
- ---------Base-Variables------------
- basebet = base
- prebet = base
- huntbet = huntbetmulty * basebet * 3
- nextbet = prebet
- losecount = 0
- betcount = 0
- chance = basechance
- bethigh = true
- devider = 1.04 - risk
- HUNT = false
- curbal = balance
- targetpercent = curbal / targetb * 100
- LBR = 0
- LBID = 0.00
- LBP = 0.00000000
- name = "PREBETS"
- sessionprofit = 0.00000000
- highest = 44.44
- hiid = 0
- hic = 0
- lowest = 44.44
- loid = 0
- loc = 0
- -----------------------------------
- ---------Rolls-To-Wait-------------
- x25wait = 99999 --@ 3.9600% 285
- x50wait = 99999 --@ 1.9800% 576
- x100wait = 1258 --@ 0.9900% 1158
- x225wait = 3555 --@ 0.4400% 2611
- x450wait = 4888 --@ 0.2200% 5228
- x990wait = 22222 --@ 0.1000% 11508
- x1414wait = 44444 --@ 0.0700% 22222
- x3300wait = 77777 --@ 0.0300% 44444
- x9900wait = 111111 --@ 0.0100% 66666
- -----------------------------------
- ----------Hunt-Triggers------------
- HUNTx25l = false --@ 3.9600%
- HUNTx25h = false --@ 3.9600%
- --
- HUNTx50l = false --@ 1.9800%
- HUNTx50h = false --@ 1.9800%
- --
- HUNTx100l = false --@ 0.9900%
- HUNTx100h = false --@ 0.9900%
- --
- HUNTx225l = false --@ 0.4400%
- HUNTx225h = false --@ 0.4400%
- --
- HUNTx450l = false --@ 0.2200%
- HUNTx450h = false --@ 0.2200%
- --
- HUNTx990l = false --@ 0.1000%
- HUNTx990h = false --@ 0.1000%
- --
- HUNTx1414l = false --@ 0.0700%
- HUNTx1414h = false --@ 0.0700%
- --
- HUNTx3300l = false --@ 0.0300%
- HUNTx3300h = false --@ 0.0300%
- --
- HUNTx9900l = false --@ 0.0100%
- HUNTx9900h = false --@ 0.0100%
- -----------------------------------
- --------------DOBET----------------
- function dobet()
- ------------COUNTERS---------------
- x25l += 1 --@ 3.9600%
- x25h += 1 --@ 3.9600%
- --
- x50l += 1 --@ 1.9800%
- x50h += 1 --@ 1.9800%
- --
- x100l += 1 --@ 0.9900%
- x100h += 1 --@ 0.9900%
- --
- x225l += 1 --@ 0.4400%
- x225h += 1 --@ 0.4400%
- --
- x450l += 1 --@ 0.2200%
- x450h += 1 --@ 0.2200%
- --
- x990l += 1 --@ 0.1000%
- x990h += 1 --@ 0.1000%
- --
- x1414l += 1--@ 0.0700%
- x1414h += 1--@ 0.0700%
- --
- x3300l += 1--@ 0.0300%
- x3300h += 1--@ 0.0300%
- --
- x9900l += 1--@ 0.0100%
- x9900h += 1--@ 0.0100%
- -----------------------------------
- ------------Last-Roll--------------
- LBR = lastBet.Roll
- LBID = lastBet.Id
- LBP = lastBet.Profit
- -----------------------------------
- -------------Balance---------------
- curbal = balance
- targetpercent = curbal / targetb * 100
- -----------------------------------
- -------------Prints----------------
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---HIGH---")
- --print("\nx25h = " .. x25h .. " of " .. string.format("%3.0f",x25wait * devider))
- --print("\nx50h = " .. x50h .. " of " .. string.format("%3.0f",x50wait * devider))
- print("\nx100h = " .. x100h .. " of " .. string.format("%3.0f",x100wait * devider))
- print("\nx225h = " .. x225h .. " of " .. string.format("%3.0f",x225wait * devider))
- print("\nx450h = " .. x450h .. " of " .. string.format("%3.0f",x450wait * devider))
- print("\nx990h = " .. x990h .. " of " .. string.format("%3.0f",x990wait * devider))
- print("\nx1414h = " .. x1414h .. " of " .. string.format("%3.0f",x1414wait * devider))
- print("\nx3300h = " .. x3300h .. " of " .. string.format("%3.0f",x3300wait * devider))
- print("\nx9900h = " .. x9900h .. " of " .. string.format("%3.0f",x9900wait * devider))
- print("\n---LOW---")
- --print("\nx25l = " .. x25l .. " of " .. string.format("%3.0f",x25wait * devider))
- --print("\nx50l = " .. x50l .. " of " .. string.format("%3.0f",x50wait * devider))
- print("\nx100l = " .. x100l .. " of " .. string.format("%3.0f",x100wait * devider))
- print("\nx225l = " .. x225l .. " of " .. string.format("%3.0f",x225wait * devider))
- print("\nx450l = " .. x450l .. " of " .. string.format("%3.0f",x450wait * devider))
- print("\nx990l = " .. x990l .. " of " .. string.format("%3.0f",x990wait * devider))
- print("\nx1414l = " .. x1414l .. " of " .. string.format("%3.0f",x1414wait * devider))
- print("\nx3300l = " .. x3300l .. " of " .. string.format("%3.0f",x3300wait * devider))
- print("\nx9900l = " .. x9900l .. " of " .. string.format("%3.0f",x9900wait * devider))
- print("---------")
- print("Huntbet = " .. string.format("%3.8f",huntbet))
- print("---------")
- print(name)
- print("---------")
- print("LoseStreak = " .. losecount)
- print("---------")
- print("Highest Roll Hunted = " .. highest .. " Chance = " .. string.format("%3.2f",hic) .. " Bet ID:")
- print(hiid)
- print("\nLowest Roll Hubted = " .. lowest .. " Chance = " .. string.format("%3.2f",loc) .. " Bet ID:")
- print(loid)
- print("---------")
- print("Total Bets = " .. betcount)
- print("\nTarget Balance = " .. targetb)
- print("% of Target Reached = " .. string.format("%3.2f",targetpercent) .. "%")
- print("---------\n")
- -----------------------------------
- --------------On-Win---------------
- if win then
- if HUNT then
- if sound then
- if chance < 1.44 then
- ching()
- end
- end
- if LBR > highest then
- highest = LBR
- hiid = LBID
- hic = chance
- end
- if LBR < lowest then
- lowest = LBR
- loid = LBID
- loc = chance
- end
- end
- losecount = 0
- betcount += 1
- curbal = balance
- if curbal >= targetb then
- print("\nTARGET REACHED. GRATS")
- stop()
- end
- -----------------------------------
- --------------On-Lose--------------
- else
- losecount += 1
- betcount += 1
- end
- -----------------------------------
- ------------Prebets----------------
- sessionprofit = sessionprofit + LBP
- if sessionprofit > 0.00000001 then
- sessionprofit = 0.00000000
- end
- nextbet = ((((curbal) - (sessionprofit * 4444)) / 164444) + (curbal * 0.00000025675))
- if nextbet > (prebet * 4) then
- nextbet = prebet * 4
- end
- if nextbet < prebet then
- nextbet = prebet
- end
- bethigh = true
- chance = basechance
- name = "PREBETS"
- -----------------------------------
- -----------HUNTx25-----------------
- if (HUNTx25h or HUNTx25l) then
- chance = 3.9600
- huntbet = huntbetmulty * basebet * 1.7 + (curbal * 0.00000107675)
- nextbet = huntbet
- if losecount >= 12 then
- nextbet = huntbet * 2
- end
- if losecount >= 13 then
- nextbet = previousbet * 1.055
- end
- if HUNTx25h then
- name = " HUNT x25 - High - 3.96% "
- bethigh = true
- end
- if HUNTx25l then
- name = " HUNT x25 - Low - 3.96% "
- bethigh = false
- end
- end
- ----------------------------------
- -----------HUNTx50-----------------
- if (HUNTx50h or HUNTx50l) then
- chance = 1.9800
- huntbet = huntbetmulty * basebet * 2 + (curbal * 0.00000107675)
- nextbet = huntbet
- if losecount >= 25 then
- nextbet = huntbet * 2
- end
- if losecount >= 26 then
- nextbet = previousbet * 1.0277
- end
- if HUNTx50h then
- name = " HUNT x50 - High - 1.98% "
- bethigh = true
- end
- if HUNTx50l then
- name = " HUNT x50 - Low - 1.98% "
- bethigh = false
- end
- end
- -----------------------------------
- -----------HUNTx100-----------------
- if (HUNTx100h or HUNTx100l) then
- chance = 0.9900
- huntbet = huntbetmulty * basebet * 2.5 + (curbal * 0.00000107675)
- nextbet = huntbet
- if losecount >= 50 then
- nextbet = huntbet * 2
- end
- if losecount >= 51 then
- nextbet = previousbet * 1.0122
- end
- if HUNTx100h then
- name = " HUNT x100 - High - 0.99% "
- bethigh = true
- end
- if HUNTx100l then
- name = " HUNT x100 - Low - 0.99% "
- bethigh = false
- end
- end
- ------------------------------------
- -----------HUNTx225-----------------
- if (HUNTx225h or HUNTx225l) then
- chance = 0.4400
- huntbet = huntbetmulty * basebet * 3 + (curbal * 0.00000107675)
- nextbet = huntbet
- if losecount >= 111 then
- nextbet = huntbet * 2
- end
- if losecount >= 112 then
- nextbet = previousbet * 1.0066
- end
- if HUNTx225h then
- name = " HUNT x225 - High - 0.44% "
- bethigh = true
- end
- if HUNTx225l then
- name = " HUNT x225 - Low - 0.44% "
- bethigh = false
- end
- end
- ------------------------------------
- -----------HUNTx450-----------------
- if (HUNTx450h or HUNTx450l) then
- chance = 0.2200
- huntbet = huntbetmulty * basebet * 2.2 + (curbal * 0.00000107675)
- nextbet = huntbet
- if losecount >= 225 then
- nextbet = huntbet * 2
- end
- if losecount >= 226 then
- nextbet = previousbet * 1.00288
- end
- if HUNTx450h then
- name = " HUNT x450 - High - 0.22% "
- bethigh = true
- end
- if HUNTx450l then
- name = " HUNT x450 - Low - 0.22% "
- bethigh = false
- end
- end
- ------------------------------------
- -----------HUNTx990-----------------
- if (HUNTx990h or HUNTx990l) then
- chance = 0.1000
- huntbet = huntbetmulty * basebet * 2.2 + (curbal * 0.00000107675)
- nextbet = huntbet
- if losecount >= 495 then
- nextbet = huntbet * 2
- end
- if losecount >= 496 then
- nextbet = previousbet * 1.0012
- end
- if HUNTx990h then
- name = " HUNT x990 - High - 0.10% "
- bethigh = true
- end
- if HUNTx990l then
- name = " HUNT x990 - Low - 0.10% "
- bethigh = false
- end
- end
- ------------------------------------
- -----------HUNTx1414-----------------
- if (HUNTx1414h or HUNTx1414l) then
- chance = 0.0700
- huntbet = huntbetmulty * basebet * 2.4 + (curbal * 0.00000107675)
- nextbet = huntbet
- if losecount >= 707 then
- nextbet = huntbet * 2
- end
- if losecount >= 708 then
- nextbet = previousbet * 1.001
- end
- if HUNTx1414h then
- name = " HUNT x1414 - High - 0.07% "
- bethigh = true
- end
- if HUNTx1414l then
- name = " HUNT x1414 - Low - 0.07% "
- bethigh = false
- end
- end
- ------------------------------------
- -----------HUNTx3300-----------------
- if (HUNTx3300h or HUNTx3300l) then
- chance = 0.0300
- huntbet = huntbetmulty * basebet * 2.5 + (curbal * 0.00000107675)
- nextbet = huntbet
- if losecount >= 1650 then
- nextbet = huntbet * 2
- end
- if losecount >= 1651 then
- nextbet = previousbet * 1.00044
- end
- if HUNTx3300h then
- name = " HUNT x3300 - High - 0.03% "
- bethigh = true
- end
- if HUNTx3300l then
- name = " HUNT x3300 - Low - 0.03% "
- bethigh = false
- end
- end
- ------------------------------------
- -----------HUNTx9900----------------
- if (HUNTx9900h or HUNTx9900l) then
- chance = 0.0100
- huntbet = huntbetmulty * basebet * 2.6 + (curbal * 0.00000107675)
- nextbet = huntbet
- if losecount >= 4950 then
- nextbet = huntbet * 2
- end
- if losecount >= 4951 then
- nextbet = previousbet * 1.0002
- end
- if HUNTx9900h then
- name = " HUNT x9900 - High - 0.01% "
- bethigh = true
- end
- if HUNTx9900l then
- name = " HUNT x9900 - Low - 0.01% "
- bethigh = false
- end
- end
- ------------------------------------
- -------Counters-Resets-High---------
- if LBR > 96.03 then
- x25h = 0
- if LBR > 98.01 then
- x50h = 0
- if LBR > 99.00 then
- x100h = 0
- if LBR > 99.55 then
- x225h = 0
- if LBR > 99.77 then
- x450h = 0
- if LBR > 99.89 then
- x990h = 0
- if LBR > 99.92 then
- x1414h = 0
- if LBR > 99.96 then
- x3300h = 0
- if LBR > 99.98 then
- x9900h = 0
- end
- end
- end
- end
- end
- end
- end
- end
- end
- -------Counters-Resets-low----------
- if LBR < 3.97 then
- x25l = 0
- if LBR < 1.98 then
- x50l = 0
- if LBR < 0.99 then
- x100l = 0
- if LBR < 0.44 then
- x225l = 0
- if LBR < 0.22 then
- x450l = 0
- if LBR < 0.10 then
- x990l = 0
- if LBR < 0.07 then
- x1414l = 0
- if LBR < 0.03 then
- x3300l = 0
- if LBR < 0.01 then
- x9900l = 0
- end
- end
- end
- end
- end
- end
- end
- end
- end
- ------------------------------------
- ------------Hunt-Resets-------------
- if (win and HUNT) then
- HUNT = false
- HUNTx25l = false --@ 3.9600%
- HUNTx25h = false --@ 3.9600%
- --
- HUNTx50l = false --@ 1.9800%
- HUNTx50h = false --@ 1.9800%
- --
- HUNTx100l = false --@ 0.9900%
- HUNTx100h = false --@ 0.9900%
- --
- HUNTx225l = false --@ 0.4400%
- HUNTx225h = false --@ 0.4400%
- --
- HUNTx450l = false --@ 0.2200%
- HUNTx450h = false --@ 0.2200%
- --
- HUNTx990l = false --@ 0.1000%
- HUNTx990h = false --@ 0.1000%
- --
- HUNTx1414l = false --@ 0.0700%
- HUNTx1414h = false --@ 0.0700%
- --
- HUNTx3300l = false --@ 0.0300%
- HUNTx3300h = false --@ 0.0300%
- --
- HUNTx9900l = false --@ 0.0100%
- HUNTx9900h = false --@ 0.0100%
- end
- --------------------------------
- -------------Hunt-Start-------------
- if not HUNT then
- if (x9900h >= x9900wait * devider and x9900h >= x9900l) then
- HUNT = true
- HUNTx9900h = true
- else
- if x9900l >= x9900wait * devider then
- HUNT = true
- HUNTx9900l = true
- else
- --
- --
- if (x3300h >= x3300wait * devider and x3300h >= x3300l) then
- HUNT = true
- HUNTx3300h = true
- else
- if x3300l >= x3300wait * devider then
- HUNT = true
- HUNTx3300l = true
- else
- --
- --
- if (x1414h >= x1414wait * devider and x1414h >= x1414l) then
- HUNT = true
- HUNTx1414h = true
- else
- if x1414l >= x1414wait * devider then
- HUNT = true
- HUNTx1414l = true
- else
- --
- --
- if (x990h >= x990wait * devider and x990h >= x990l) then
- HUNT = true
- HUNTx990h = true
- else
- if x990l >= x990wait * devider then
- HUNT = true
- HUNTx990l = true
- else
- --
- --
- if (x450h >= x450wait * devider and x450h >= x450l) then
- HUNT = true
- HUNTx450h = true
- else
- if x450l >= x450wait * devider then
- HUNT = true
- HUNTx450l = true
- else
- --
- --
- if (x225h >= x225wait * devider and x225h >= x225l) then
- HUNT = true
- HUNTx225h = true
- else
- if x225l >= x225wait * devider then
- HUNT = true
- HUNTx225l = true
- else
- --
- --
- if (x100h >= x100wait * devider and x100h >= x100l) then
- HUNT = true
- HUNTx100h = true
- else
- if x100l >= x100wait * devider then
- HUNT = true
- HUNTx100l = true
- else
- --
- --
- if (x50h >= x50wait * devider and x50h >= x50l) then
- HUNT = true
- HUNTx50h = true
- else
- if x50l >= x50wait * devider then
- HUNT = true
- HUNTx50l = true
- else
- --
- --
- if (x25h >= x25wait * devider and x25h >= x25l) then
- HUNT = true
- HUNTx25h = true
- else
- if x25l >= x25wait * devider then
- HUNT = true
- HUNTx25l = true
- end
- end
- end
- end
- end
- end
- end
- end
- end
- end
- end
- end
- end
- end
- end
- end
- end
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment