Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2018
806
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 114.44 KB | None | 0 0
  1. --@ Ultimate_Hunter
  2.  
  3. --@ In case u win and want to share =)
  4. --@ BTC: 3JqurFKpteoMdtZkMHyJ9uT5NpSCyv9JLP
  5. --@ BCH: qqsvlx4990f63skj2q68qzxx0jpvh5lx2gtfwq3q27
  6. --@ ETH: 0xe65Fa3C4cf51DB9C4dD0d044c28fa400B1beC1E4
  7. --@ ETC: 0x165EcFbd86933689577350844E44923c94F0396E
  8. --@ LTC: MRFsGnJ8xxehxTiEifcShbEzfCZT1VJnL2
  9. --@ ZRX: 0xCA10AeFe65472fF7Ce516C781d0CBaFf467cCcD2
  10. --@ BAT: 0xEAB2b98cEF8cce22bcD3C6907d22695c6F9e9fdF
  11. --@ ty
  12.  
  13.  
  14. ------------Settings------------------
  15. reset = false   --@ switch to false, unless u want to reset the roll statistic. (Must be true for the first start)
  16.  
  17. minbet = 0.00000010 --@ Put min bet.
  18.  
  19. prebet = 0.00000050--@ Put bet for wager between hunts.
  20.  
  21. huntbet1 = 0.0  --@ Put bet for Hunting. Leave 0 to autocalculate the bet.
  22.  
  23. targetb = 0.03000000  --@ Put target balance.
  24.  
  25. luckyHunts = false
  26.  
  27. yoloHunts = true
  28.  
  29. seedReset = 10000
  30.  
  31. basechance = 82.44  --@ Put chance for wager between hunts.
  32.  
  33. sound = true --@ set False to remove the sound on win.
  34.  
  35. statsEvery = 1 --@ set frequency of showing stats in console.
  36.  
  37. --@ use stopwin() to stop on next win and print stats
  38. --@ use stopnow() to stop this roll and print stats
  39. -----------------------------------
  40.  
  41.  
  42. ---------Rolls-To-Wait-------------
  43. x100w = 133 --@  0.9900%
  44. x180w = 444  --@  0.5500%
  45. x240w = 666  --@  0.4100%
  46. x330w = 888  --@  0.3000%
  47. x400w = 1444  --@  0.2400%
  48. x500w = 2000  --@  0.1900%
  49. x600w = 2444  --@  0.1600%
  50. x825w = 3333  --@  0.1200%
  51. x990w = 3555  --@  0.1000%
  52. x1100w = 4444 --@  0.0900%
  53. x1650w = 6666 --@  0.0600%
  54. x2475w = 7777 --@  0.0400%
  55. x3300w = 8444 --@  0.0300%
  56. x4950w = 9111 --@  0.0200%
  57. x9900w = 9555 --@  0.0100%
  58.  
  59. x100Hwait = x100w
  60. x100Lwait = x100w
  61. x330Hwait = x330w
  62. x330Lwait = x330w
  63. x500Hwait = x500w
  64. x500Lwait = x500w
  65. x990Hwait = x990w
  66. x990Lwait = x990w
  67. x1650Hwait = x1650w
  68. x1650Lwait = x1650w
  69. x2475Hwait = x2475w
  70. x2475Lwait = x2475w
  71. x4950Hwait = x4950w
  72. x4950Lwait = x4950w
  73.  
  74. waiter100h = x100Hwait
  75. waiter330h = x330Hwait
  76. waiter500h = x500Hwait
  77. waiter990h = x990Hwait
  78. waiter1650h = x1650Hwait
  79.  
  80. waiter100l = x100Lwait
  81. waiter330l = x330Lwait
  82. waiter500l = x500Lwait
  83. waiter990l = x990Lwait
  84. waiter1650l = x1650Lwait
  85.  
  86. x100hFactor = 1
  87. x330hFactor = 1
  88. x500hFactor = 1
  89. x990hFactor = 1
  90. x1650hFactor = 1
  91. --
  92. --
  93. x100lFactor = 1
  94. x330lFactor = 1
  95. x500lFactor = 1
  96. x990lFactor = 1
  97. x1650lFactor = 1
  98. --
  99. --
  100. x100hFactor1 = 1
  101. x330hFactor1 = 1
  102. x500hFactor1 = 1
  103. x990hFactor1 = 1
  104. x1650hFactor1 = 1
  105. --
  106. --
  107. x100lFactor1 = 1
  108. x330lFactor1 = 1
  109. x500lFactor1 = 1
  110. x990lFactor1 = 1
  111. x1650lFactor1 = 1
  112. --
  113. --
  114. highCount = 0
  115. highCount = 0
  116. --
  117. --
  118. nonceAverage = 0
  119. --
  120. -----------------------------------
  121.  
  122.  
  123.  
  124.  
  125. ---------Statistics----------------
  126. if reset then
  127.   --
  128.   x100l = 0  --@  0.9900%
  129.   x100h = 0  --@  0.9900%
  130.   --
  131.   x180l = 0  --@  0.5500%
  132.   x180h = 0  --@  0.5500%
  133.   --
  134.   x240l = 0  --@  0.4100%
  135.   x240h = 0  --@  0.4100%
  136.   --
  137.   x330l = 0  --@  0.3000%
  138.   x330h = 0  --@  0.3000%
  139.   --
  140.   x400l = 0  --@  0.2400%
  141.   x400h = 0  --@  0.2400%
  142.   --
  143.   x500l = 0  --@  0.1900%
  144.   x500h = 0  --@  0.1900%
  145.   --
  146.   x600l = 0  --@  0.1600%
  147.   x600h = 0  --@  0.1600%
  148.   --
  149.   x825l = 0  --@  0.1200%
  150.   x825h = 0  --@  0.1200%
  151.   --
  152.   x990l = 0  --@  0.1000%
  153.   x990h = 0  --@  0.1000%
  154.   --
  155.   x1100l = 0  --@  0.0900%
  156.   x1100h = 0  --@  0.0900%
  157.   --
  158.   x1650l = 0 --@  0.0600%
  159.   x1650h = 0 --@  0.0600%
  160.   --
  161.   x2475l = 0 --@  0.0400%
  162.   x2475h = 0 --@  0.0400%
  163.   --
  164.   x3300l = 0  --@  0.0300%
  165.   x3300h = 0  --@  0.0300%
  166.   --
  167.   x4950l = 0 --@  0.0200%
  168.   x4950h = 0 --@  0.0200%
  169.   --
  170.   x9900l = 0 --@  0.0100%
  171.   x9900h = 0 --@  0.0100%
  172.   --
  173.   HITx100l = 0  --@  0.9900%
  174.   HITx100h = 0  --@  0.9900%
  175.   --
  176.   HITx180l = 0  --@  0.5500%
  177.   HITx180h = 0  --@  0.5500%
  178.   --
  179.   HITx240l = 0  --@  0.4100%
  180.   HITx240h = 0  --@  0.4100%
  181.   --
  182.   HITx330l = 0  --@  0.3000%
  183.   HITx330h = 0  --@  0.3000%
  184.   --
  185.   HITx400l = 0  --@  0.2400%
  186.   HITx400h = 0  --@  0.2400%
  187.   --
  188.   HITx500l = 0  --@  0.1900%
  189.   HITx500h = 0  --@  0.1900%
  190.   --
  191.   HITx600l = 0  --@  0.1600%
  192.   HITx600h = 0  --@  0.1600%
  193.   --
  194.   HITx825l = 0  --@  0.1200%
  195.   HITx825h = 0  --@  0.1200%
  196.   --
  197.   HITx990l = 0  --@  0.1000%
  198.   HITx990h = 0  --@  0.1000%
  199.   --
  200.   HITx1100l = 0  --@  0.0900%
  201.   HITx1100h = 0  --@  0.0900%
  202.   --
  203.   HITx1650l = 0 --@  0.0600%
  204.   HITx1650h = 0 --@  0.0600%
  205.   --
  206.   HITx2475l = 0 --@  0.0400%
  207.   HITx2475h = 0 --@  0.0400%
  208.   --
  209.   HITx3300l = 0  --@  0.0300%
  210.   HITx3300h = 0  --@  0.0300%
  211.   --
  212.   HITx4950l = 0 --@  0.0200%
  213.   HITx4950h = 0 --@  0.0200%
  214.   --
  215.   HITx9900l = 0 --@  0.0100%
  216.   HITx9900h = 0 --@  0.0100%
  217.   --
  218.   YOLOWins = 0
  219.   YOLOed = 0
  220.   LUCKYWins = 0
  221.   LUCKYed = 0
  222.   LUCKYLoses = 0
  223.   YOLOloses = 0
  224.   ULTIMATEh = true
  225.   ULTIMATEl = true
  226.  
  227.  
  228.   x100lCount = 0  --@  0.9900%
  229.   x100hCount = 0  --@  0.9900%
  230.   --
  231.   x180lCount = 0  --@  0.5500%
  232.   x180hCount = 0  --@  0.5500%
  233.   --
  234.   x240lCount = 0  --@  0.4100%
  235.   x240hCount = 0  --@  0.4100%
  236.   --
  237.   x330lCount = 0  --@  0.3000%
  238.   x330hCount = 0  --@  0.3000%
  239.   --
  240.   x400lCount = 0  --@  0.2400%
  241.   x400hCount = 0  --@  0.2400%
  242.   --
  243.   x500lCount = 0  --@  0.1900%
  244.   x500hCount = 0  --@  0.1900%
  245.   --
  246.   x600lCount = 0  --@  0.1600%
  247.   x600hCount = 0  --@  0.1600%
  248.   --
  249.   x825lCount = 0  --@  0.1200%
  250.   x825hCount = 0  --@  0.1200%
  251.   --
  252.   x990lCount = 0  --@  0.1000%
  253.   x990hCount = 0  --@  0.1000%
  254.   --
  255.   x1100lCount = 0  --@  0.0900%
  256.   x1100hCount = 0  --@  0.0900%
  257.   --
  258.   x1650lCount = 0 --@  0.0600%
  259.   x1650hCount = 0 --@  0.0600%
  260.   --
  261.   x2475lCount = 0 --@  0.0400%
  262.   x2475hCount = 0 --@  0.0400%
  263.   --
  264.   x3300lCount = 0  --@  0.0300%
  265.   x3300hCount = 0  --@  0.0300%
  266.   --
  267.   x4950lCount = 0 --@  0.0200%
  268.   x4950hCount = 0 --@  0.0200%
  269.   --
  270.   x9900lCount = 0 --@  0.0100%
  271.   x9900hCount = 0 --@  0.0100%
  272.  
  273.   missedHigh = 0
  274.   missedLow = 0
  275.  
  276. end
  277. -----------------------------------
  278.  
  279. ---------Base-Variables------------
  280. base = minbet
  281. basebet = base
  282.  
  283. curbal = balance
  284. startbal = balance
  285. betautocalc = 7000
  286. changeTime = 380
  287. ULTIcalc = 20000
  288. streakFactor = 0.0137
  289. changeFactor = changeTime * streakFactor
  290. if huntbet1 == 0 then
  291.   huntbetbase = (curbal / betautocalc) / 8.5
  292.   if huntbetbase < minbet * 1.0 then
  293.     huntbetbase =  minbet * 1.0
  294.   end
  295. else
  296.   huntbetbase = huntbet1 / 8.5
  297.   if huntbetbase < minbet * 1.0  then
  298.     huntbetbase =  minbet * 1.0
  299.   end
  300. end
  301. huntbet = huntbetbase
  302. ULTIbet = (curbal / ULTIcalc)
  303. if ULTIbet < minbet then
  304.   ULTIbet =  minbet
  305. end
  306. chance990base = 0.1
  307. chance990 = chance990base
  308. maxbetmult = 300
  309. maxbet = huntbetbase * maxbetmult
  310. nextbet = prebet
  311. losecount = 0
  312. betcount = 0
  313. chance = basechance
  314. bethigh = true
  315. targetpercent = curbal / targetb * 100
  316. LBR = 0
  317. LBID = 0.00
  318. LBP = 0.00000000
  319. LBC = 0.0000
  320. name = "  PREBETS  "
  321. sessionprofit = 0.00000000
  322. highest = 44.44
  323. hiid = 0
  324. hic = 44.44
  325. hip = 0.00000000
  326. lowest = 44.44
  327. loid = 0
  328. loc = 44.44
  329. lop = 0.00000000
  330. huntstreak100 = 0
  331. huntstreak330 = 0
  332. huntstreak400 = 0
  333. chancecalc = 0
  334. x990streak = 0
  335. x990try = 0
  336. LUCKYstreak = -1
  337. HiLo = 0
  338. yolorand = 50
  339. YOLOLow = false
  340. YOLOHigh = false
  341. YOLOstreak = 0
  342. LBN = 0
  343. missingHigh = 1
  344. missingLow = 1
  345. waitHigh = 1
  346. waitLow = 1
  347. factorHigh = 1
  348. factorLow = 1
  349. prefSideHigh = true
  350. goHigh = 0
  351. goLow = 0
  352. luckyRolls = 10
  353. name3 = "---"
  354. payoutSwitch = 0
  355. ULTIHigh1 = 0
  356. ULTILow1 = 0
  357. ULTIHigh2 = 0
  358. ULTILow2 = 0
  359. ULTIHigh3 = 0
  360. ULTILow3 = 0
  361. ULTIHigh4 = 0
  362. ULTILow4 = 0
  363. ULTIWait1 = 9500
  364. ULTIWait2 = 8500
  365. ULTIWait3 = 8000
  366. ULTIWait4 = 7500
  367. if ULTIWait1 > seedReset then
  368.   if seedReset >= 7000 then
  369.     ULTIWait1 = seedReset * 0.95
  370.     ULTIWait2 = seedReset * 0.85
  371.     ULTIWait3 = seedReset * 0.80
  372.     ULTIWait4 = seedReset * 0.75
  373.   else
  374.     ULTIWait1 = seedReset
  375.     ULTIWait2 = seedReset
  376.     ULTIWait3 = seedReset * 0.95
  377.     ULTIWait4 = seedReset * 0.85
  378.   end
  379.  
  380. end
  381.  
  382. ULTIstreak = -1
  383. trigger = "---"
  384. stats = 0
  385. -----------------------------------
  386.  
  387.  
  388. -----------Switchers---------------
  389. --
  390. --
  391. switcherAdjuster = 1.92
  392. --
  393. --
  394. switcher100hh1 = 1.85 * switcherAdjuster
  395. switcher330hh1 = 1.52 * switcherAdjuster
  396. switcher100hl1 = 1.97 * switcherAdjuster
  397. switcher330hl1 = 1.62 * switcherAdjuster
  398. --
  399. switcher100lh1 = 1.97 * switcherAdjuster
  400. switcher330lh1 = 1.62 * switcherAdjuster
  401. switcher100ll1 = 1.85 * switcherAdjuster
  402. switcher330ll1 = 1.52 * switcherAdjuster
  403. --
  404. switcher100h990h1 = 1.74 * switcherAdjuster
  405. switcher330h990h1 = 1.61 * switcherAdjuster
  406. switcher100h990l1 = 1.92 * switcherAdjuster
  407. switcher330h990l1 = 1.74 * switcherAdjuster
  408. --
  409. switcher100h2990h1 = 1.72 * switcherAdjuster
  410. switcher330h2990h1 = 1.65 * switcherAdjuster
  411. switcher100h2990l1 = 1.85 * switcherAdjuster
  412. switcher330h2990l1 = 1.87 * switcherAdjuster
  413. --
  414. switcher100l990h1 = 1.92 * switcherAdjuster
  415. switcher330l990h1 = 1.74 * switcherAdjuster
  416. switcher100l990l1 = 1.74 * switcherAdjuster
  417. switcher330l990l1 = 1.61 * switcherAdjuster
  418. --
  419. switcher100l2990h1 = 1.97 * switcherAdjuster
  420. switcher330l2990h1 = 1.65 * switcherAdjuster
  421. switcher100l2990l1 = 1.85 * switcherAdjuster
  422. switcher330l2990l1 = 1.52 * switcherAdjuster
  423. --
  424. --
  425. --
  426. switcher100hh2 = 1.94 * switcherAdjuster
  427. switcher330hh2 = 1.86 * switcherAdjuster
  428. switcher100hl2 = 2.06 * switcherAdjuster
  429. switcher330hl2 = 1.97 * switcherAdjuster
  430. --
  431. switcher100lh2 = 2.06 * switcherAdjuster
  432. switcher330lh2 = 1.97 * switcherAdjuster
  433. switcher100ll2 = 1.94 * switcherAdjuster
  434. switcher330ll2 = 1.86 * switcherAdjuster
  435. --
  436. switcher100h990h2 = 1.81 * switcherAdjuster
  437. switcher330h990h2 = 1.74 * switcherAdjuster
  438. switcher100h990l2 = 1.85 * switcherAdjuster
  439. switcher330h990l2 = 1.75 * switcherAdjuster
  440. --
  441. switcher100h2990h2 = 1.94 * switcherAdjuster
  442. switcher330h2990h2 = 1.62 * switcherAdjuster
  443. switcher100h2990l2 = 1.94 * switcherAdjuster
  444. switcher330h2990l2 = 1.74 * switcherAdjuster
  445. --
  446. switcher100l990h2 = 1.85 * switcherAdjuster
  447. switcher330l990h2 = 1.75 * switcherAdjuster
  448. switcher100l990l2 = 1.46 * switcherAdjuster
  449. switcher330l990l2 = 1.74 * switcherAdjuster
  450. --
  451. switcher100l2990h2 = 1.94 * switcherAdjuster
  452. switcher330l2990h2 = 1.74 * switcherAdjuster
  453. switcher100l2990l2 = 1.94 * switcherAdjuster
  454. switcher330l2990l2 = 1.62 * switcherAdjuster
  455. --
  456. -----------------------------------
  457.  
  458. ----------Hunt-Triggers------------
  459. HUNTx100l = false  --@  1.0000%
  460. HUNTx100h = false  --@  1.0000%
  461. --
  462. HUNTx330l = false  --@  0.3000%
  463. HUNTx330h = false  --@  0.3000%
  464. --
  465. HUNTx400l = false  --@  0.2400%
  466. HUNTx400h = false  --@  0.2400%
  467. --
  468. HUNTx990 = false  --@  0.1000%
  469. HUNTLucky = false
  470. --
  471. HUNTUltimateHigh1 = false
  472. HUNTUltimateLow1 = false
  473. HUNTUltimateHigh2 = false
  474. HUNTUltimateLow2 = false
  475. HUNTUltimateHigh3 = false
  476. HUNTUltimateLow3 = false
  477. HUNTUltimateHigh4 = false
  478. HUNTUltimateLow4 = false
  479. --
  480. HUNT = false
  481. --
  482. -----------------------------------
  483.  
  484.  
  485. stopOnWin = false
  486. stopSave = false
  487.  
  488. function stopwin()
  489.   stopOnWin = true
  490. end
  491.  
  492. function stopnow()
  493.   stopSave = true
  494. end
  495.  
  496.  
  497. --------------DOBET----------------
  498. function dobet()
  499.  
  500.   stats += 1
  501.  
  502.   ------------Last-Roll--------------
  503.   LBR = lastBet.Roll
  504.   LBID = lastBet.Id
  505.   LBP = lastBet.Profit
  506.   LBC = lastBet.Chance
  507.   LBN = lastBet.Nonce
  508.   -----------------------------------
  509.  
  510.   -------------Balance---------------
  511.   curbal = balance
  512.   targetpercent = curbal / targetb * 100
  513.   -----------------------------------
  514.  
  515.  
  516.   ------------Prebets----------------
  517.   sessionprofit = sessionprofit + LBP
  518.   if sessionprofit > 0.00000001 then
  519.     sessionprofit = 0.00000000
  520.   end
  521.   nextbet = ((((curbal) - (sessionprofit * 2222)) / 100000) + (curbal * 0.00000025675)) * 0.44
  522.   if nextbet > (prebet * 4) then
  523.     nextbet = prebet * 4
  524.   end
  525.   if nextbet < prebet then
  526.     nextbet = prebet
  527.   end
  528.  
  529.  
  530.   chance = basechance
  531.   name = "  PREBETS  "
  532.   -----------------------------------
  533.  
  534.  
  535.   --------------On-Win---------------
  536.   if win then
  537.  
  538.     payoutSwitch = 0
  539.  
  540.  
  541.     if HUNT then
  542.  
  543.       if huntbet1 == 0 then
  544.         huntbetbase = (curbal / betautocalc) / 8.5
  545.         if huntbetbase < minbet * 1.0 then
  546.           huntbetbase = minbet * 1.0
  547.         end
  548.       end
  549.  
  550.       huntbet = huntbetbase
  551.  
  552.       if sound and LBC < 2 then
  553.         ching()
  554.       end
  555.  
  556.       if LBP > hip and LBR > 99 then
  557.         highest = LBR
  558.         hiid = LBID
  559.         hic = LBC
  560.         hip = LBP
  561.       end
  562.       if LBP > lop and LBR < 0.99 then
  563.         lowest = LBR
  564.         loid = LBID
  565.         loc = LBC
  566.         lop = LBP
  567.       end
  568.       if HUNTx100h or HUNTx100l then
  569.         huntstreak100 = 0
  570.       end
  571.       if HUNTx330h or HUNTx330l then
  572.         huntstreak330 = 0
  573.       end
  574.       if HUNTx400h or HUNTx400l then
  575.         huntstreak400 = 0
  576.       end
  577.       if HUNTx990 then
  578.         x990try = 0
  579.         x990streak = 0
  580.       end
  581.       if HUNTUltimateHigh1 or HUNTUltimateHigh2 or HUNTUltimateHigh3 or HUNTUltimateHigh4 then
  582.         ULTIMATEh = false
  583.       end
  584.       if HUNTUltimateLow1 or HUNTUltimateLow2 or HUNTUltimateLow3 or HUNTUltimateLow4 then
  585.         ULTIMATEl = false
  586.       end
  587.  
  588.  
  589.       if YOLOHigh or YOLOLow then
  590.         YOLOWins += 1
  591.         YOLOed += LBP
  592.       end
  593.  
  594.       if luckyHunts then
  595.         if HUNTLucky and HUNT then
  596.           HUNTLucky = false
  597.           LUCKYstreak = -1
  598.           LUCKYWins += 1
  599.           LUCKYed += LBP
  600.           HUNT = false
  601.         else
  602.           HUNTLucky = true
  603.           HUNT = true
  604.         end
  605.       else
  606.         HUNT = false
  607.       end
  608.  
  609.       if HUNTUltimateHigh1 or HUNTUltimateLow1 or HUNTUltimateHigh2 or HUNTUltimateLow2 or HUNTUltimateHigh3 or HUNTUltimateLow3 or HUNTUltimateHigh4 or HUNTUltimateLow4  then
  610.         HUNTLucky = false
  611.       end
  612.       YOLOstreak = 0
  613.       YOLOHigh = false
  614.       YOLOLow = false
  615.  
  616.  
  617.       chance990 = chance990base
  618.       chancecalc = 0
  619.       --
  620.       HUNTx100l = false  --@  1.0000%
  621.       HUNTx100h = false  --@  1.0000%
  622.       --
  623.       HUNTx330l = false  --@  1.0000%
  624.       HUNTx330h = false  --@  1.0000%
  625.       --
  626.       HUNTx400l = false  --@  0.2400%
  627.       HUNTx400h = false  --@  0.2400%
  628.       --
  629.       HUNTx990 = false
  630.       --
  631.       HUNTUltimateHigh1 = false
  632.       HUNTUltimateLow1 = false
  633.       HUNTUltimateHigh2 = false
  634.       HUNTUltimateLow2 = false
  635.       HUNTUltimateHigh3 = false
  636.       HUNTUltimateLow3 = false
  637.       HUNTUltimateHigh4 = false
  638.       HUNTUltimateLow4 = false
  639.       ULTIstreak = -1
  640.       --
  641.     end
  642.  
  643.  
  644.     yolorand = math.random(1,400)
  645.     if yoloHunts then
  646.       if not HUNTLucky then
  647.         if yolorand == 1 then
  648.           YOLOLow = true
  649.           HUNT = true
  650.         end
  651.         if yolorand == 400 then
  652.           YOLOHigh = true
  653.           HUNT = true
  654.         end
  655.       end
  656.     end
  657.     losecount = 0
  658.     betcount += 1
  659.     if curbal >= targetb then
  660.       print("\nTARGET REACHED. GRATS")
  661.       stop()
  662.     end
  663.  
  664.     if LBN >= seedReset then
  665.       resetseed()
  666.       x100l = 0 --@  0.9900%
  667.       x100h = 0 --@  0.9900%
  668.       --
  669.       x180l = 0 --@  0.5500%
  670.       x180h = 0 --@  0.5500%
  671.       --
  672.       x240l = 0 --@  0.4100%
  673.       x240h = 0 --@  0.4100%
  674.       --
  675.       x330l = 0 --@  0.3000%
  676.       x330h = 0 --@  0.3000%
  677.       --
  678.       x400l = 0 --@  0.2400%
  679.       x400h = 0 --@  0.2400%
  680.       --
  681.       x500l = 0 --@  0.1900%
  682.       x500h = 0 --@  0.1900%
  683.       --
  684.       x600l = 0 --@  0.1600%
  685.       x600h = 0 --@  0.1600%
  686.       --
  687.       x825l = 0 --@  0.1200%
  688.       x825h = 0 --@  0.1200%
  689.       --
  690.       x990l = 0 --@  0.1000%
  691.       x990h = 0 --@  0.1000%
  692.       --
  693.       x1100l = 0 --@  0.0900%
  694.       x1100h = 0 --@  0.0900%
  695.       --
  696.       x1650l = 0 --@  0.0600%
  697.       x1650h = 0 --@  0.0600%
  698.       --
  699.       x2475l = 0 --@  0.0400%
  700.       x2475h = 0 --@  0.0400%
  701.       --
  702.       x3300l = 0 --@  0.0300%
  703.       x3300h = 0 --@  0.0300%
  704.       --
  705.       x4950l = 0 --@  0.0200%
  706.       x4950h = 0 --@  0.0200%
  707.       --
  708.       x9900l = 0 --@  0.0100%
  709.       x9900h = 0 --@  0.0100%
  710.       --
  711.       --
  712.       --
  713.       HITx100l = 0 --@  0.9900%
  714.       HITx100h = 0 --@  0.9900%
  715.       --
  716.       HITx180l = 0 --@  0.5500%
  717.       HITx180h = 0 --@  0.5500%
  718.       --
  719.       HITx240l = 0 --@  0.4100%
  720.       HITx240h = 0 --@  0.4100%
  721.       --
  722.       HITx330l = 0 --@  0.3000%
  723.       HITx330h = 0 --@  0.3000%
  724.       --
  725.       HITx400l = 0  --@  0.2400%
  726.       HITx400h = 0 --@  0.2400%
  727.       --
  728.       HITx500l = 0 --@  0.1900%
  729.       HITx500h = 0 --@  0.1900%
  730.       --
  731.       HITx600l = 0 --@  0.1600%
  732.       HITx600h = 0 --@  0.1600%
  733.       --
  734.       HITx825l = 0 --@  0.1200%
  735.       HITx825h = 0 --@  0.1200%
  736.       --
  737.       HITx990l = 0 --@  0.1000%
  738.       HITx990h = 0 --@  0.1000%
  739.       --
  740.       HITx1100l = 0 --@  0.0900%
  741.       HITx1100h = 0 --@  0.0900%
  742.       --
  743.       HITx1650l = 0 --@  0.0600%
  744.       HITx1650h = 0 --@  0.0600%
  745.       --
  746.       HITx2475l = 0 --@  0.0400%
  747.       HITx2475h = 0 --@  0.0400%
  748.       --
  749.       HITx3300l = 0 --@  0.0300%
  750.       HITx3300h = 0 --@  0.0300%
  751.       --
  752.       HITx4950l = 0 --@  0.0200%
  753.       HITx4950h = 0 --@  0.0200%
  754.       --
  755.       HITx9900l = 0 --@  0.0100%
  756.       HITx9900h = 0 --@  0.0100%
  757.       --
  758.       --
  759.       x100Hwait = x100w  --@  0.9900% 1158
  760.       x100Lwait = x100w  --@  0.9900% 1158
  761.       x990Hwait = x990w  --@  0.1000% 11508
  762.       x990Lwait = x990w  --@  0.1000% 11508
  763.       --
  764.       --
  765.       ULTIMATEh = true
  766.       ULTIMATEl = true
  767.       --
  768.       --
  769.       x100lCount = 0  --@  0.9900%
  770.       x100hCount = 0  --@  0.9900%
  771.       --
  772.       x180lCount = 0  --@  0.5500%
  773.       x180hCount = 0  --@  0.5500%
  774.       --
  775.       x240lCount = 0  --@  0.4100%
  776.       x240hCount = 0  --@  0.4100%
  777.       --
  778.       x330lCount = 0  --@  0.3000%
  779.       x330hCount = 0  --@  0.3000%
  780.       --
  781.       x400lCount = 0  --@  0.2400%
  782.       x400hCount = 0  --@  0.2400%
  783.       --
  784.       x500lCount = 0  --@  0.1900%
  785.       x500hCount = 0  --@  0.1900%
  786.       --
  787.       x600lCount = 0  --@  0.1600%
  788.       x600hCount = 0  --@  0.1600%
  789.       --
  790.       x825lCount = 0  --@  0.1200%
  791.       x825hCount = 0  --@  0.1200%
  792.       --
  793.       x990lCount = 0  --@  0.1000%
  794.       x990hCount = 0  --@  0.1000%
  795.       --
  796.       x1100lCount = 0 --@  0.0900%
  797.       x1100hCount = 0 --@  0.0900%
  798.       --
  799.       x1650lCount = 0 --@  0.0600%
  800.       x1650hCount = 0 --@  0.0600%
  801.       --
  802.       x2475lCount = 0 --@  0.0400%
  803.       x2475hCount = 0 --@  0.0400%
  804.       --
  805.       x3300lCount = 0 --@  0.0300%
  806.       x3300hCount = 0 --@  0.0300%
  807.       --
  808.       x4950lCount = 0 --@  0.0200%
  809.       x4950hCount = 0 --@  0.0200%
  810.       --
  811.       x9900lCount = 0 --@  0.0100%
  812.       x9900hCount = 0 --@  0.0100%
  813.       --
  814.       --
  815.       missedHigh = 0
  816.       missedLow = 0
  817.       --
  818.  
  819.     end
  820.     -----------------------------------
  821.  
  822.     --------------On-Lose--------------
  823.   else
  824.     losecount += 1
  825.     changeFactor = losecount * streakFactor
  826.     betcount += 1
  827.     if HUNT then
  828.       if HUNTx100h or HUNTx100l then
  829.         huntstreak100 += 1
  830.       end
  831.       if HUNTx330h or HUNTx330l then
  832.         huntstreak330 += 1
  833.       end
  834.       if HUNTx400h or HUNTx400l then
  835.         huntstreak400 += 1
  836.       end
  837.       if HUNTx990 then
  838.         x990streak += 1
  839.       end
  840.       if HUNTLucky then
  841.         LUCKYstreak += 1
  842.         LUCKYLoses += 1
  843.         LUCKYed += LBP
  844.       end
  845.       if YOLOHigh or YOLOLow then
  846.         YOLOstreak += 1
  847.         YOLOloses += 1
  848.         YOLOed += LBP
  849.       end
  850.       if HUNTUltimateHigh1 or HUNTUltimateLow1 or HUNTUltimateHigh2 or HUNTUltimateLow2 or HUNTUltimateHigh3 or HUNTUltimateLow3 or HUNTUltimateHigh4 or HUNTUltimateLow4  then
  851.         ULTIstreak += 1
  852.       end
  853.     end
  854.   end
  855.   -----------------------------------
  856.  
  857.  
  858.   ------------COUNTERS---------------
  859.   x100l += 1  --@  0.9900%
  860.   x100h += 1  --@  0.9900%
  861.   --
  862.   x180l += 1  --@  0.5500%
  863.   x180h += 1  --@  0.5500%
  864.   --
  865.   x240l += 1  --@  0.4100%
  866.   x240h += 1  --@  0.4100%
  867.   --
  868.   x330l += 1  --@  0.3000%
  869.   x330h += 1  --@  0.3000%
  870.   --
  871.   x400l += 1  --@  0.2400%
  872.   x400h += 1  --@  0.2400%
  873.   --
  874.   x500l += 1  --@  0.1900%
  875.   x500h += 1  --@  0.1900%
  876.   --
  877.   x600l += 1  --@  0.1600%
  878.   x600h += 1  --@  0.1600%
  879.   --
  880.   x825l += 1  --@  0.1200%
  881.   x825h += 1  --@  0.1200%
  882.   --
  883.   x990l += 1  --@  0.1000%
  884.   x990h += 1  --@  0.1000%
  885.   --
  886.   x1100l += 1  --@  0.0900%
  887.   x1100h += 1  --@  0.0900%
  888.   --
  889.   x1650l += 1  --@  0.0600%
  890.   x1650h += 1  --@  0.0600%
  891.   --
  892.   x2475l += 1  --@  0.0400%
  893.   x2475h += 1  --@  0.0400%
  894.   --
  895.   x3300l += 1  --@  0.0300%
  896.   x3300h += 1  --@  0.0300%
  897.   --
  898.   x4950l += 1  --@  0.0200%
  899.   x4950h += 1  --@  0.0200%
  900.   --
  901.   x9900l += 1  --@  0.0100%
  902.   x9900h += 1  --@  0.0100%
  903.   --
  904.   --
  905.   --
  906.   HITx100l += 1  --@  0.9900%
  907.   HITx100h += 1  --@  0.9900%
  908.   --
  909.   HITx180l += 1  --@  0.5500%
  910.   HITx180h += 1  --@  0.5500%
  911.   --
  912.   HITx240l += 1  --@  0.4100%
  913.   HITx240h += 1  --@  0.4100%
  914.   --
  915.   HITx330l += 1  --@  0.3000%
  916.   HITx330h += 1  --@  0.3000%
  917.   --
  918.   HITx400l += 1  --@  0.2400%
  919.   HITx400h += 1  --@  0.2400%
  920.   --
  921.   HITx500l += 1  --@  0.1900%
  922.   HITx500h += 1  --@  0.1900%
  923.   --
  924.   HITx600l += 1  --@  0.1600%
  925.   HITx600h += 1  --@  0.1600%
  926.   --
  927.   HITx825l += 1  --@  0.1200%
  928.   HITx825h += 1  --@  0.1200%
  929.   --
  930.   HITx990l += 1  --@  0.1000%
  931.   HITx990h += 1  --@  0.1000%
  932.   --
  933.   HITx1100l += 1  --@  0.0900%
  934.   HITx1100h += 1  --@  0.0900%
  935.   --
  936.   HITx1650l += 1  --@  0.0600%
  937.   HITx1650h += 1  --@  0.0600%
  938.   --
  939.   HITx2475l += 1  --@  0.0400%
  940.   HITx2475h += 1  --@  0.0400%
  941.   --
  942.   HITx3300l += 1  --@  0.0300%
  943.   HITx3300h += 1  --@  0.0300%
  944.   --
  945.   HITx4950l += 1  --@  0.0200%
  946.   HITx4950h += 1  --@  0.0200%
  947.   --
  948.   HITx9900l += 1  --@  0.0100%
  949.   HITx9900h += 1  --@  0.0100%
  950.   -----------------------------------
  951.  
  952.   -------Counters-Resets-High---------
  953.  
  954.   if LBR > 99.98 then
  955.     x100h = x100h * 0.3
  956.     x180h = x180h * 0.3
  957.     x240h = x240h * 0.3
  958.     x330h = x330h * 0.25
  959.     x400h = x400h * 0.2
  960.     x500h = x500h * 0.2
  961.     x600h = x600h * 0.2
  962.     x825h = x825h * 0.15
  963.     x990h = x990h * 0.15
  964.     x1100h = x1100h * 0.15
  965.     x1650h = x1650h * 0.10
  966.     x2475h = x2475h * 0.10
  967.     x3300h = x3300h * 0.05
  968.     x4950h = x4950h * 0.05
  969.     x9900h = 0
  970.     HITx9900h = 0
  971.     x9900hCount += 1
  972.     if LBC <= 0.99 and not bethigh then
  973.       missedHigh += 1
  974.     end
  975.   else
  976.     if LBR > 99.97 then
  977.       x100h = x100h * 0.3
  978.       x180h = x180h * 0.3
  979.       x240h = x240h * 0.3
  980.       x330h = x330h * 0.25
  981.       x400h = x400h * 0.2
  982.       x500h = x500h * 0.2
  983.       x600h = x600h * 0.2
  984.       x825h = x825h * 0.15
  985.       x990h = x990h * 0.15
  986.       x1100h = x1100h * 0.15
  987.       x1650h = x1650h * 0.10
  988.       x2475h = x2475h * 0.05
  989.       x3300h = x3300h * 0.05
  990.       x4950h = 0
  991.       HITx4950h = 0
  992.       x4950hCount += 1
  993.       if LBC <= 0.99 and LBC >= 0.02 and not bethigh then
  994.         missedHigh += 1
  995.       end
  996.     else
  997.       if LBR > 99.96 then
  998.         x100h = x100h * 0.3
  999.         x180h = x180h * 0.3
  1000.         x240h = x240h * 0.3
  1001.         x330h = x330h * 0.25
  1002.         x400h = x400h * 0.2
  1003.         x500h = x500h * 0.2
  1004.         x600h = x600h * 0.2
  1005.         x825h = x825h * 0.2
  1006.         x990h = x990h * 0.1
  1007.         x1100h = x1100h * 0.10
  1008.         x1650h = x1650h * 0.05
  1009.         x2475h = x2475h * 0.05
  1010.         x3300h = 0
  1011.         HITx3300h = 0
  1012.         x3300hCount += 1
  1013.         if LBC <= 0.99 and LBC >= 0.03 and not bethigh then
  1014.           missedHigh += 1
  1015.         end
  1016.       else
  1017.         if LBR > 99.95 then
  1018.           x100h = x100h * 0.3
  1019.           x180h = x180h * 0.3
  1020.           x240h = x240h * 0.3
  1021.           x330h = x330h * 0.25
  1022.           x400h = x400h * 0.2
  1023.           x500h = x500h * 0.2
  1024.           x600h = x600h * 0.2
  1025.           x825h = x825h * 0.15
  1026.           x990h = x990h * 0.15
  1027.           x1100h = x1100h * 0.1
  1028.           x1650h = x1650h * 0.05
  1029.           x2475h = 0
  1030.           HITx2475h = 0
  1031.           x2475hCount += 1
  1032.           if LBC <= 0.99 and LBC >= 0.04 and not bethigh then
  1033.             missedHigh += 1
  1034.           end
  1035.         else
  1036.           if LBR > 99.93 then
  1037.             x100h = x100h * 0.3
  1038.             x180h = x180h * 0.3
  1039.             x240h = x240h * 0.3
  1040.             x330h = x330h * 0.25
  1041.             x400h = x400h * 0.2
  1042.             x500h = x500h * 0.2
  1043.             x600h = x600h * 0.2
  1044.             x825h = x825h * 0.15
  1045.             x990h = x990h * 0.15
  1046.             x1100h = x1100h * 0.1
  1047.             x1650h = 0
  1048.             HITx1650h = 0
  1049.             x1650hCount += 1
  1050.             if LBC <= 0.99 and LBC >= 0.06 and not bethigh then
  1051.               missedHigh += 1
  1052.             end
  1053.           else
  1054.             if LBR > 99.90 then
  1055.               x100h = x100h * 0.3
  1056.               x180h = x180h * 0.3
  1057.               x240h = x240h * 0.25
  1058.               x330h = x330h * 0.2
  1059.               x400h = x400h * 0.25
  1060.               x500h = x500h * 0.15
  1061.               x600h = x600h * 0.15
  1062.               x825h = x825h * 0.15
  1063.               x990h = x990h * 0.05
  1064.               x1100h = 0
  1065.               HITx1100h = 0
  1066.               x1100hCount += 1
  1067.               if LBC <= 0.99 and LBC >= 0.09 and not bethigh then
  1068.                 missedHigh += 1
  1069.               end
  1070.             else
  1071.               if LBR > 99.89 then
  1072.                 x990Hwait = x990w
  1073.                 if x990h < x990w * 0.38 then
  1074.                   x990Hwait = x990w * 1.33
  1075.                 end
  1076.                 if x990h > x990w * 0.98 then
  1077.                   x990Hwait = x990w * 0.95
  1078.                 end
  1079.                 if x990h > x990w * 1.5 then
  1080.                   x990Hwait = x990w * 0.85
  1081.                 end
  1082.                 x100h = x100h * 0.2
  1083.                 x180h = x180h * 0.2
  1084.                 x240h = x240h * 0.15
  1085.                 x330h = x330h * 0.15
  1086.                 x400h = x400h * 0.1
  1087.                 x500h = x500h * 0.1
  1088.                 x600h = x600h * 0.1
  1089.                 x825h = x825h * 0.05
  1090.                 x990h = 0
  1091.                 HITx990h = 0
  1092.                 x990hCount += 1
  1093.                 if LBC <= 0.99 and LBC >= 0.1 and not  bethigh then
  1094.                   missedHigh += 1
  1095.                 end
  1096.               else
  1097.                 if LBR > 99.87 then
  1098.                   x100h = x100h * 0.15
  1099.                   x180h = x180h * 0.15
  1100.                   x240h = x240h * 0.1
  1101.                   x330h = x330h * 0.1
  1102.                   x400h = x400h * 0.05
  1103.                   x500h = x500h * 0.05
  1104.                   x600h = x600h * 0.05
  1105.                   x825h = 0
  1106.                   HITx825h = 0
  1107.                   x825hCount += 1
  1108.                   if LBC <= 0.99 and LBC >= 0.12 and not bethigh then
  1109.                     missedHigh += 1
  1110.                   end
  1111.                 else
  1112.                   if LBR > 99.83 then
  1113.                     x100h = x100h * 0.1
  1114.                     x180h = x180h * 0.1
  1115.                     x240h = x240h * 0.05
  1116.                     x330h = x330h * 0.05
  1117.                     x400h = x400h * 0.05
  1118.                     x500h = x500h * 0.05
  1119.                     x600h = 0
  1120.                     HITx600h = 0
  1121.                     x600hCount += 1
  1122.                     if LBC <= 0.99 and LBC >= 0.16 and not bethigh then
  1123.                       missedHigh += 1
  1124.                     end
  1125.                   else
  1126.                     if LBR > 99.80 then
  1127.                       x100h = x100h * 0.1
  1128.                       x180h = x180h * 0.1
  1129.                       x240h = x240h * 0.05
  1130.                       x330h = x330h * 0.05
  1131.                       x400h = x400h * 0.05
  1132.                       x500h = 0
  1133.                       HITx500h = 0
  1134.                       x500hCount += 1
  1135.                       if LBC <= 0.99 and LBC >= 0.19 and not bethigh then
  1136.                         missedHigh += 1
  1137.                       end
  1138.                     else
  1139.                       if LBR > 99.75 then
  1140.                         x100h = x100h * 0.1
  1141.                         x180h = x180h * 0.1
  1142.                         x240h = x240h * 0.05
  1143.                         x330h = x330h * 0.05
  1144.                         x400h = 0
  1145.                         HITx400h = 0
  1146.                         x400hCount += 1
  1147.                         if LBC <= 0.99 and LBC >= 0.24 and not bethigh then
  1148.                           missedHigh += 1
  1149.                         end
  1150.                       else
  1151.                         if LBR > 99.69 then
  1152.                           x100h = x100h * 0.05
  1153.                           x180h = x180h * 0.05
  1154.                           x240h = x240h * 0.025
  1155.                           x330h = 0
  1156.                           HITx330h = 0
  1157.                           x330hCount += 1
  1158.                           if LBC <= 0.99 and LBC >= 0.3 and not bethigh then
  1159.                             missedHigh += 1
  1160.                           end
  1161.                         else
  1162.                           if LBR > 99.58 then
  1163.                             x100h = x100h * 0.05
  1164.                             x180h = x180h * 0.025
  1165.                             x240h = 0
  1166.                             HITx240h = 0
  1167.                             x240hCount += 1
  1168.                             if LBC <= 0.99 and LBC >= 0.41 and not bethigh then
  1169.                               missedHigh += 1
  1170.                             end
  1171.                           else
  1172.                             if LBR > 99.44 then
  1173.                               x100h = x100h * 0.025
  1174.                               x180h = 0
  1175.                               HITx180h = 0
  1176.                               x180hCount += 1
  1177.                               if LBC <= 0.99 and LBC >= 0.55 and not bethigh then
  1178.                                 missedHigh += 1
  1179.                               end
  1180.                             else
  1181.                               if LBR > 99.00 then
  1182.                                 if x100h < x100w * 0.38 then
  1183.                                   x100Hwait = x100Hwait * 1.14
  1184.                                 else
  1185.                                   if x100h > x100w * 1.5 then
  1186.                                     x100Hwait = x100Hwait * 0.79
  1187.                                   else
  1188.                                     if x100h > x100w * 0.98 then
  1189.                                       x100Hwait = x100Hwait * 0.93
  1190.                                     else
  1191.                                       x100Hwait = x100w
  1192.                                     end
  1193.                                   end
  1194.                                 end
  1195.                                 x100h = 0
  1196.                                 HITx100h = 0
  1197.                                 x100hCount += 1
  1198.                                 if LBC == 0.99 and not bethigh then
  1199.                                   missedHigh += 1
  1200.                                 end
  1201.                               end
  1202.                             end
  1203.                           end
  1204.                         end
  1205.                       end
  1206.                     end
  1207.                   end
  1208.                 end
  1209.               end
  1210.             end
  1211.           end
  1212.         end
  1213.       end
  1214.     end
  1215.   end
  1216.  
  1217.   -------Counters-Resets-low----------
  1218.  
  1219.  
  1220.  
  1221.   if LBR < 0.01 then
  1222.     x100l = x100l * 0.3
  1223.     x180l = x180l * 0.3
  1224.     x240l = x240l * 0.3
  1225.     x330l = x330l * 0.25
  1226.     x400l = x400l * 0.2
  1227.     x500l = x500l * 0.2
  1228.     x600l = x600l * 0.2
  1229.     x825l = x825l * 0.15
  1230.     x990l = x990l * 0.15
  1231.     x1100l = x1100l * 0.15
  1232.     x1650l = x1650l * 0.10
  1233.     x2475l = x2475l * 0.10
  1234.     x3300l = x3300l * 0.05
  1235.     x4950l = x4950l * 0.05
  1236.     x9900l = 0
  1237.     HITx9900l = 0
  1238.     x9900lCount += 1
  1239.     if chance <= 0.99 and bethigh then
  1240.       missedLow += 1
  1241.     end
  1242.   else
  1243.     if LBR < 0.02 then
  1244.       x100l = x100l * 0.3
  1245.       x180l = x180l * 0.3
  1246.       x240l = x240l * 0.3
  1247.       x330l = x330l * 0.25
  1248.       x400l = x400l * 0.2
  1249.       x500l = x500l * 0.2
  1250.       x600l = x600l * 0.2
  1251.       x825l = x825l * 0.15
  1252.       x990l = x990l * 0.15
  1253.       x1100l = x1100l * 0.15
  1254.       x1650l = x1650l * 0.10
  1255.       x2475l = x2475l * 0.05
  1256.       x3300l = x3300l * 0.05
  1257.       x4950l = 0
  1258.       HITx4950l = 0
  1259.       x4950lCount += 1
  1260.       if chance <= 0.99 and LBC >= 0.02 and bethigh then
  1261.         missedLow += 1
  1262.       end
  1263.     else
  1264.       if LBR < 0.03 then
  1265.         x100l = x100l * 0.3
  1266.         x180l = x180l * 0.3
  1267.         x240l = x240l * 0.3
  1268.         x330l = x330l * 0.25
  1269.         x400l = x400l * 0.2
  1270.         x500l = x500l * 0.2
  1271.         x600l = x600l * 0.2
  1272.         x825l = x825l * 0.1
  1273.         x990l = x990l * 0.1
  1274.         x1100l = x1100l * 0.10
  1275.         x1650l = x1650l * 0.05
  1276.         x2475l = x2475l * 0.05
  1277.         x3300l = 0
  1278.         HITx3300l = 0
  1279.         x3300lCount += 1
  1280.         if LBC <= 0.99 and LBC >= 0.03 and bethigh then
  1281.           missedLow += 1
  1282.         end
  1283.       else
  1284.         if LBR < 0.04 then
  1285.           x100l = x100l * 0.3
  1286.           x180l = x180l * 0.3
  1287.           x240l = x240l * 0.3
  1288.           x330l = x330l * 0.25
  1289.           x400l = x400l * 0.2
  1290.           x500l = x500l * 0.2
  1291.           x600l = x600l * 0.2
  1292.           x825l = x825l * 0.15
  1293.           x990l = x990l * 0.1
  1294.           x1100l = x1100l * 0.1
  1295.           x1650l = x1650l * 0.05
  1296.           x2475l = 0
  1297.           HITx2475l = 0
  1298.           x2475lCount += 1
  1299.           if LBC <= 0.99 and LBC >= 0.04 and bethigh then
  1300.             missedLow += 1
  1301.           end
  1302.         else
  1303.           if LBR < 0.06 then
  1304.             x100l = x100l * 0.3
  1305.             x180l = x180l * 0.3
  1306.             x240l = x240l * 0.3
  1307.             x330l = x330l * 0.25
  1308.             x400l = x400l * 0.2
  1309.             x500l = x500l * 0.2
  1310.             x600l = x600l * 0.2
  1311.             x825l = x825l * 0.15
  1312.             x990l = x990l * 0.1
  1313.             x1100l = x1100l * 0.1
  1314.             x1650l = 0
  1315.             HITx1650l = 0
  1316.             x1650lCount += 1
  1317.             if LBC <= 0.99 and LBC >= 0.06 and bethigh then
  1318.               missedLow += 1
  1319.             end
  1320.           else
  1321.             if LBR < 0.09 then
  1322.               x100l = x100l * 0.3
  1323.               x180l = x180l * 0.3
  1324.               x240l = x240l * 0.25
  1325.               x330l = x330l * 0.2
  1326.               x400l = x400l * 0.15
  1327.               x500l = x500l * 0.15
  1328.               x600l = x600l * 0.1
  1329.               x825l = x825l * 0.1
  1330.               x990l = x990l * 0.05
  1331.               x1100l = 0
  1332.               HITx1100l = 0
  1333.               x1100lCount += 1
  1334.               if LBC <= 0.99 and LBC >= 0.09 and bethigh then
  1335.                 missedLow += 1
  1336.               end
  1337.             else
  1338.               if LBR < 0.10 then
  1339.                 x990Lwait = x990w
  1340.                 if x990l < x990w * 0.38 then
  1341.                   x990Lwait = x990w * 1.33
  1342.                 end
  1343.                 if x990l > x990w * 0.98 then
  1344.                   x990Lwait = x990w * 0.95
  1345.                 end
  1346.                 if x990l > x990w * 1.5 then
  1347.                   x990Lwait = x990w * 0.85
  1348.                 end
  1349.                 x100l = x100l * 0.2
  1350.                 x180l = x180l * 0.2
  1351.                 x240l = x240l * 0.15
  1352.                 x330l = x330l * 0.15
  1353.                 x400l = x400l * 0.1
  1354.                 x500l = x500l * 0.1
  1355.                 x600l = x600l * 0.1
  1356.                 x825l = x825l * 0.05
  1357.                 x990l = 0
  1358.                 HITx990l = 0
  1359.                 x990lCount += 1
  1360.                 if LBC <= 0.99 and LBC >= 0.1 and bethigh then
  1361.                   missedLow += 1
  1362.                 end
  1363.               else
  1364.                 if LBR < 0.12 then
  1365.                   x100l = x100l * 0.15
  1366.                   x180l = x180l * 0.15
  1367.                   x240l = x240l * 0.1
  1368.                   x330l = x330l * 0.1
  1369.                   x400l = x400l * 0.05
  1370.                   x500l = x500l * 0.05
  1371.                   x600l = x600l * 0.05
  1372.                   x825l = 0
  1373.                   HITx825l = 0
  1374.                   x825lCount += 1
  1375.                   if LBC <= 0.99 and LBC >= 0.12 and bethigh then
  1376.                     missedLow += 1
  1377.                   end
  1378.                 else
  1379.                   if LBR < 0.16 then
  1380.                     x100l = x100l * 0.1
  1381.                     x180l = x180l * 0.1
  1382.                     x240l = x240l * 0.1
  1383.                     x330l = x330l * 0.05
  1384.                     x400l = x400l * 0.05
  1385.                     x500l = x500l * 0.05
  1386.                     x600l = 0
  1387.                     HITx600l = 0
  1388.                     x600lCount += 1
  1389.                     if LBC <= 0.99 and LBC >= 0.16 and bethigh then
  1390.                       missedLow += 1
  1391.                     end
  1392.                   else
  1393.                     if LBR < 0.19 then
  1394.                       x100l = x100l * 0.1
  1395.                       x180l = x180l * 0.1
  1396.                       x240l = x240l * 0.05
  1397.                       x330l = x330l * 0.05
  1398.                       x400l = x400l * 0.05
  1399.                       x500l = 0
  1400.                       HITx500l = 0
  1401.                       x500lCount += 1
  1402.                       if LBC <= 0.99 and LBC >= 0.19 and bethigh then
  1403.                         missedLow += 1
  1404.                       end
  1405.                     else
  1406.                       if LBR < 0.24 then
  1407.                         x100l = x100l * 0.1
  1408.                         x180l = x180l * 0.1
  1409.                         x240l = x240l * 0.05
  1410.                         x330l = x330l * 0.05
  1411.                         x400l = 0
  1412.                         HITx400l = 0
  1413.                         x400lCount += 1
  1414.                         if LBC <= 0.99 and LBC >= 0.24 and bethigh then
  1415.                           missedLow += 1
  1416.                         end
  1417.                       else
  1418.                         if LBR < 0.30 then
  1419.                           x100l = x100l * 0.05
  1420.                           x180l = x180l * 0.05
  1421.                           x240l = x240l * 0.025
  1422.                           x330l = 0
  1423.                           HITx330l = 0
  1424.                           x330lCount += 1
  1425.                           if LBC <= 0.99 and LBC >= 0.3 and bethigh then
  1426.                             missedLow += 1
  1427.                           end
  1428.                         else
  1429.                           if LBR < 0.41 then
  1430.                             x100l = x100l * 0.05
  1431.                             x180l = x180l * 0.025
  1432.                             x240l = 0
  1433.                             HITx240l = 0
  1434.                             x240lCount += 1
  1435.                             if LBC <= 0.99 and LBC >= 0.41 and bethigh then
  1436.                               missedLow += 1
  1437.                             end
  1438.                           else
  1439.                             if LBR < 0.55 then
  1440.                               x100l = x100l * 0.025
  1441.                               x180l = 0
  1442.                               HITx180l = 0
  1443.                               x180lCount += 1
  1444.                               if LBC <= 0.99 and LBC >= 0.55 and bethigh then
  1445.                                 missedLow += 1
  1446.                               end
  1447.                             else
  1448.                               if LBR < 0.99 then
  1449.                                 if x100l < x100w * 0.38 then
  1450.                                   x100Lwait = x100Lwait * 1.14
  1451.                                 else
  1452.                                   if x100l > x100w * 1.5 then
  1453.                                     x100Lwait = x100Lwait * 0.79
  1454.                                   else
  1455.                                     if x100l > x100w * 0.98 then
  1456.                                       x100Lwait = x100Lwait * 0.93
  1457.                                     else
  1458.                                       x100Lwait = x100w
  1459.                                     end
  1460.                                   end
  1461.                                 end
  1462.                                 x100l = 0
  1463.                                 HITx100l = 0
  1464.                                 x100lCount += 1
  1465.                                 if LBC == 0.99 and bethigh then
  1466.                                   missedLow += 1
  1467.                                 end
  1468.                               end
  1469.                             end
  1470.                           end
  1471.                         end
  1472.                       end
  1473.                     end
  1474.                   end
  1475.                 end
  1476.               end
  1477.             end
  1478.           end
  1479.         end
  1480.       end
  1481.     end
  1482.   end
  1483.  
  1484.   ------------------------------------
  1485.  
  1486.   highCount = x100hCount +  + x180hCount + x240hCount + x330hCount + x400hCount + x500hCount + x600hCount + x825hCount + x990hCount + x1100hCount + x1650hCount + x2475hCount + x3300hCount + x4950hCount + x9900hCount
  1487.   lowCount = x100lCount +  + x180lCount + x240lCount + x330lCount + x400lCount + x500lCount + x600lCount + x825lCount + x990lCount + x1100lCount + x1650lCount + x2475lCount + x3300lCount + x4950lCount + x9900lCount
  1488.  
  1489.   nonceAverage = LBN / 100
  1490.  
  1491.   ------------------------------------
  1492.   --
  1493.   if LBN < 4500 then
  1494.     if x100hCount > 20 then
  1495.       x100hFactor1 = 1.35
  1496.     else
  1497.       if x100hCount > 10 then
  1498.         x100hFactor1 = 1.2
  1499.       else
  1500.         x100hFactor1 = 1
  1501.       end
  1502.     end
  1503.   else
  1504.     if x100hCount > 20 then
  1505.       x100hFactor1 = 1.15
  1506.     else
  1507.       if x100hCount > 10 then
  1508.         x100hFactor1 = 1.1
  1509.       else
  1510.         x100hFactor1 = 1
  1511.       end
  1512.     end
  1513.   end
  1514.   if x330hCount > 5 then
  1515.     x330hFactor1 = 1.15
  1516.   else
  1517.     x330hFactor1 = 1
  1518.   end
  1519.  
  1520.   if  x500hCount > 4 then
  1521.     x500hFactor1 = 1.15
  1522.   else
  1523.     x500hFactor1 = 1
  1524.   end
  1525.  
  1526.   if x990hCount > 3 then
  1527.     x990hFactor1 = 1.15
  1528.   else
  1529.     x990hFactor1 = 1
  1530.   end
  1531.  
  1532.   if x1650hCount > 1 then
  1533.     x1650hFactor1 = 1.15
  1534.   else
  1535.     x1650hFactor1 = 1
  1536.   end
  1537.  
  1538.  
  1539.   ---
  1540.   ---
  1541.   ---
  1542.   if LBN < 4500 then
  1543.     if x100lCount > 20 then
  1544.       x100lFactor = 1.35
  1545.     else
  1546.       if x100lCount > 10 then
  1547.         x100lFactor = 1.2
  1548.       else
  1549.         x100lFactor = 1
  1550.       end
  1551.     end
  1552.   else
  1553.     if x100lCount > 20 then
  1554.       x100lFactor = 1.15
  1555.     else
  1556.       if x100lCount > 10 then
  1557.         x100lFactor = 1.1
  1558.       else
  1559.         x100lFactor = 1
  1560.       end
  1561.     end
  1562.   end
  1563.   if x330lCount > 5 then
  1564.     x330lFactor = 1.15
  1565.   else
  1566.     x330lFactor = 1
  1567.   end
  1568.  
  1569.   if  x500lCount > 4 then
  1570.     x500lFactor = 1.15
  1571.   else
  1572.     x500lFactor = 1
  1573.   end
  1574.  
  1575.   if x990lCount > 3 then
  1576.     x990lFactor = 1.15
  1577.   else
  1578.     x990lFactor = 1
  1579.   end
  1580.  
  1581.   if x1650lCount > 1 then
  1582.     x1650lFactor = 1.15
  1583.   else
  1584.     x1650lFactor = 1
  1585.   end
  1586.   --
  1587.   --
  1588.   --
  1589.   if highCount < nonceAverage then
  1590.     nonceFactorHigh = 1 - ((1 - (highCount / nonceAverage)) * 0.17)
  1591.   else
  1592.     nonceFactorHigh = 1 + (((highCount / nonceAverage) - 1) * 0.39)
  1593.   end
  1594.   if lowCount < nonceAverage then
  1595.     nonceFactorLow = 1 - ((1 - (lowCount / nonceAverage)) * 0.17)
  1596.   else
  1597.     nonceFactorLow = 1 + (((lowCount / nonceAverage) - 1) * 0.39)
  1598.   end
  1599.   --
  1600.   --
  1601.   x100hFactor = x100hFactor1 * nonceFactorHigh
  1602.   x330hFactor = x330hFactor1 * nonceFactorHigh
  1603.   x500hFactor = x500hFactor1 * nonceFactorHigh
  1604.   x990hFactor = x990hFactor1 * nonceFactorHigh
  1605.   x1650hFactor = x1650hFactor1 * nonceFactorHigh
  1606.   --
  1607.   --
  1608.   x100lFactor = x100lFactor1 * nonceFactorLow
  1609.   x330lFactor = x330lFactor1 * nonceFactorLow
  1610.   x500lFactor = x500lFactor1 * nonceFactorLow
  1611.   x990lFactor = x990lFactor1 * nonceFactorLow
  1612.   x1650lFactor = x1650lFactor1 * nonceFactorLow
  1613.   --
  1614.   --
  1615.  
  1616.   ULTIHigh4 = (HITx2475h + HITx3300h + HITx4950h + HITx9900h) * 0.25
  1617.   ULTILow4 = (HITx2475l + HITx3300l + HITx4950l + HITx9900l) * 0.25
  1618.   ULTIHigh3 = (HITx3300h + HITx4950h + HITx9900h) * 0.33
  1619.   ULTILow3 = (HITx3300l + HITx4950l + HITx9900l) * 0.33
  1620.   ULTIHigh2 = (HITx4950h + HITx9900h) * 0.5
  1621.   ULTILow2 = (HITx4950l + HITx9900l) * 0.5
  1622.   ULTIHigh1 = HITx9900h
  1623.   ULTILow1 = HITx9900l
  1624.  
  1625.  
  1626.  
  1627.   missingHigh =x100h / 4 + x180h / 4 + x240h / 3  + x330h / 3.5 + x400h / 5 + x500h / 7 + x600h / 11 + x825h / 24 + x990h / 29 + x1100h / 33 + x1650h / 66 + x2475h / 100 + x3300h / 150 + x4950h / 200 + x9900h / 400
  1628.   missingLow =x100l / 4 + x180l / 4 + x240l / 3  + x330l / 3.5 + x400l / 5 + x500l / 7 + x600l / 11 + x825l / 24 + x990l / 29 + x1100l / 33 + x1650l / 66 + x2475l / 100 + x3300l / 150 + x4950l / 200 + x9900l / 400
  1629.   waitHigh = x100Hwait * x100hFactor / 4 + x180w / 4 + x240w / 3 + x330w * x330hFactor / 3.5 + x400w / 5 + x500Hwait * x500hFactor / 7 + x600w / 11 + x825w / 24 + x990Hwait * x990hFactor / 29 + x1100w / 33 + x1650Hwait * x1650hFactor / 66 + x2475Hwait / 100 + x3300w / 150 + x4950Hwait / 200 + x9900w / 400
  1630.   waitLow = x100Lwait * x100lFactor / 4 + x180w / 4 + x240w / 3 + x330w * x330lFactor / 3.5 + x400w / 5 + x500Lwait * x500lFactor / 7 + x600w / 11 + x825w / 24 + x990Lwait * x990lFactor / 29 + x1100w / 33 + x1650Lwait * x1650lFactor / 66 + x2475Lwait / 100 + x3300w / 150 + x4950Lwait / 200 + x9900w / 400
  1631.   factorHigh = missingHigh / waitHigh
  1632.   factorLow = missingLow / waitLow
  1633.  
  1634.  
  1635.  
  1636.   if factorHigh > factorLow then
  1637.     prefSideHigh = true
  1638.   else
  1639.     prefSideHigh = false
  1640.   end
  1641.  
  1642.  
  1643.  
  1644.   if LBN < 2800 then
  1645.  
  1646.     if factorLow >= 1.11 then
  1647.       goLow = 2
  1648.     else
  1649.       if factorLow >= 0.40 then
  1650.         goLow = 1
  1651.       else
  1652.         goLow = 0
  1653.       end
  1654.     end
  1655.  
  1656.     if factorHigh >= 1.11 then
  1657.       goHigh = 2
  1658.     else
  1659.       if factorHigh >= 0.40  then
  1660.         goHigh = 1
  1661.       else
  1662.         goHigh = 0
  1663.       end
  1664.     end
  1665.  
  1666.   else
  1667.     if LBN >= 2800 and LBN < 6000 then
  1668.  
  1669.  
  1670.       if factorLow >= 0.81 then
  1671.         goLow = 2
  1672.       else
  1673.         if factorLow >= 0.31 then
  1674.           goLow = 1
  1675.         else
  1676.           goLow = 0
  1677.         end
  1678.       end
  1679.  
  1680.       if factorHigh >= 0.81 then
  1681.         goHigh = 2
  1682.       else
  1683.         if factorHigh >= 0.31  then
  1684.           goHigh = 1
  1685.         else
  1686.           goHigh = 0
  1687.         end
  1688.       end
  1689.  
  1690.  
  1691.     else
  1692.  
  1693.  
  1694.       if factorLow >= 0.74 then
  1695.         goLow = 2
  1696.       else
  1697.         if factorLow >= 0.27  then
  1698.           goLow = 1
  1699.         else
  1700.           goLow = 0
  1701.         end
  1702.       end
  1703.  
  1704.       if factorHigh >= 0.74 then
  1705.         goHigh = 2
  1706.       else
  1707.         if factorHigh >= 0.17 then
  1708.           goHigh = 1
  1709.         else
  1710.           goHigh = 0
  1711.         end
  1712.       end
  1713.     end
  1714.   end
  1715.  
  1716.  
  1717.   -------------Hunt-Start-------------
  1718.  
  1719.  
  1720.   --
  1721.   if not HUNT then
  1722.  
  1723.     if prefSideHigh then
  1724.  
  1725.       waiter100h = x100Hwait * x100hFactor
  1726.       waiter500h = x500Hwait * x500hFactor
  1727.       waiter990h = x990Hwait * x990hFactor
  1728.       waiter1650h = x1650Hwait * x1650hFactor
  1729.  
  1730.       waiter100l = x100Lwait * x100lFactor * 1.1
  1731.       waiter500l = x500Lwait * x500lFactor * 1.1
  1732.       waiter990l = x990Lwait * x990lFactor * 1.1
  1733.       waiter1650l = x1650Lwait * x1650lFactor * 1.1
  1734.  
  1735.  
  1736.       if (x100h >= x100Hwait * x100hFactor)  then
  1737.         HUNTx100h = true
  1738.         HUNT = true
  1739.         trigger = " x100 HIGH "
  1740.       else
  1741.         --
  1742.         --
  1743.         if (x500h >= x500Hwait * x500hFactor)  then
  1744.           HUNT = true
  1745.           HUNTx100h = true
  1746.           trigger = " x500 HIGH "
  1747.         else
  1748.           --
  1749.           --
  1750.           if (x990h >= x990Hwait * x990hFactor)  then
  1751.             HUNT = true
  1752.             HUNTx330h = true
  1753.             trigger = " x990 HIGH "
  1754.           else
  1755.             --
  1756.             --
  1757.             if (x1650h >= x1650Hwait * x1650hFactor)  then
  1758.               HUNT = true
  1759.               HUNTx400h = true
  1760.               trigger = " x1650 HIGH "
  1761.             else
  1762.               --
  1763.               --
  1764.               --
  1765.               --
  1766.               --
  1767.               if (x100l >= x100Lwait * x100lFactor * 1.1) then
  1768.                 HUNT = true
  1769.                 HUNTx100l = true
  1770.                 trigger = " x100 LOW "
  1771.               else
  1772.                 --
  1773.                 --
  1774.                 if (x500l >= x500Lwait * x500lFactor * 1.1) then
  1775.                   HUNT = true
  1776.                   HUNTx100l = true
  1777.                   trigger = " x500 LOW "
  1778.                 else
  1779.                   --
  1780.                   --
  1781.                   if (x990l >= x990Lwait * x990lFactor * 1.1) then
  1782.                     HUNT = true
  1783.                     HUNTx330l = true
  1784.                     trigger = " x990 LOW "
  1785.                   else
  1786.                     --
  1787.                     --
  1788.                     if (x1650l >= x1650Lwait * x1650lFactor * 1.1) then
  1789.                       HUNT = true
  1790.                       HUNTx400l = true
  1791.                       trigger = " x1650 LOW "
  1792.                     end
  1793.                   end
  1794.                 end
  1795.               end
  1796.             end
  1797.           end
  1798.         end
  1799.       end
  1800.  
  1801.     else
  1802.  
  1803.  
  1804.       waiter100h = x100Hwait * x100hFactor * 1.1
  1805.       waiter500h = x500Hwait * x500hFactor * 1.1
  1806.       waiter990h = x990Hwait * x990hFactor * 1.1
  1807.       waiter1650h = x1650Hwait * x1650hFactor * 1.1
  1808.  
  1809.       waiter100l = x100Lwait * x100lFactor
  1810.       waiter500l = x500Lwait * x500lFactor
  1811.       waiter990l = x990Lwait * x990lFactor
  1812.       waiter1650l = x1650Lwait * x1650lFactor
  1813.  
  1814.       if (x100l >= x100Lwait * x100lFactor) then
  1815.         HUNT = true
  1816.         HUNTx100l = true
  1817.         trigger = " x100 LOW "
  1818.       else
  1819.         --
  1820.         --
  1821.         if (x500l >= x500Lwait * x500lFactor) then
  1822.           HUNT = true
  1823.           HUNTx100l = true
  1824.           trigger = " x500 LOW "
  1825.         else
  1826.           --
  1827.           --
  1828.           if (x990l >= x990Lwait * x990lFactor) then
  1829.             HUNT = true
  1830.             HUNTx330l = true
  1831.             trigger = " x990 LOW "
  1832.           else
  1833.             --
  1834.             --
  1835.             if (x1650l >= x1650Lwait * x1650lFactor) then
  1836.               HUNT = true
  1837.               HUNTx400l = true
  1838.               trigger = " x1650 LOW "
  1839.             else
  1840.               --
  1841.               --
  1842.               if (x100h >= x100Hwait * x100hFactor * 1.1)  then
  1843.                 HUNTx100h = true
  1844.                 HUNT = true
  1845.                 trigger = " x100 HIGH "
  1846.               else
  1847.                 --
  1848.                 --
  1849.                 if (x500h >= x500Hwait * x500hFactor * 1.1)  then
  1850.                   HUNT = true
  1851.                   HUNTx100h = true
  1852.                   trigger = " x500 HIGH "
  1853.                 else
  1854.                   --
  1855.                   --
  1856.                   if (x990h >= x990Hwait * x990hFactor * 1.1)  then
  1857.                     HUNT = true
  1858.                     HUNTx330h = true
  1859.                     trigger = " x990 HIGH "
  1860.                   else
  1861.                     --
  1862.                     --
  1863.                     if (x1650h >= x1650Hwait * x1650hFactor * 1.1)  then
  1864.                       HUNT = true
  1865.                       HUNTx400h = true
  1866.                       trigger = " x1650 HIGH "
  1867.                     end
  1868.                   end
  1869.                 end
  1870.               end
  1871.             end
  1872.           end
  1873.         end
  1874.       end
  1875.     end
  1876.  
  1877.  
  1878.     if LBN > 7000 then
  1879.  
  1880.       if ULTIMATEh then
  1881.         if not HUNT and ULTIHigh4 >= ULTIWait4 and ULTIHigh4 > ULTILow4 and (x2475hCount + x3300hCount + x4950hCount + x9900hCount) < 5 then
  1882.           HUNTUltimateHigh4 = true
  1883.           HUNT = true
  1884.         end
  1885.       end
  1886.  
  1887.       if ULTIMATEl then
  1888.         if not HUNT and ULTILow4 >= ULTIWait4 and ULTILow4 > ULTIHigh4 and  (x2475lCount + x3300lCount + x4950lCount + x9900lCount) < 5 then
  1889.           HUNTUltimateLow4 = true
  1890.           HUNT = true
  1891.         end
  1892.       end
  1893.  
  1894.       if ULTIMATEh then
  1895.         if not HUNT and ULTIHigh3 >= ULTIWait3 and ULTIHigh3 > ULTILow3 and  (x3300hCount + x4950hCount + x9900hCount) < 4 then
  1896.           HUNTUltimateHigh3 = true
  1897.           HUNT = true
  1898.         end
  1899.       end
  1900.  
  1901.       if ULTIMATEl then
  1902.         if not HUNT and ULTILow3 >= ULTIWait3 and ULTILow3 > ULTIHigh3 and (x3300lCount + x4950lCount + x9900lCount) < 4 then
  1903.           HUNTUltimateLow3 = true
  1904.           HUNT = true
  1905.         end
  1906.       end
  1907.  
  1908.       if ULTIMATEh then
  1909.         if not HUNT and ULTIHigh2 >= ULTIWait2 and ULTIHigh2 > ULTILow2 and (x4950hCount + x9900hCount) < 3 then
  1910.           HUNTUltimateHigh2 = true
  1911.           HUNT = true
  1912.         end
  1913.       end
  1914.  
  1915.       if ULTIMATEl then
  1916.         if not HUNT and ULTILow2 >= ULTIWait2 and ULTILow2 > ULTIHigh2 and (x4950lCount + x9900lCount) < 3 then
  1917.           HUNTUltimateLow2 = true
  1918.           HUNT = true
  1919.         end
  1920.       end
  1921.  
  1922.       if ULTIMATEh then
  1923.         if not HUNT and ULTIHigh1 >= ULTIWait1 and ULTIHigh1 > ULTILow1 and x9900hCount < 2 then
  1924.           HUNTUltimateHigh1 = true
  1925.           HUNT = true
  1926.         end
  1927.       end
  1928.  
  1929.       if ULTIMATEl then
  1930.         if not HUNT and ULTILow1 >= ULTIWait1 and ULTILow1 > ULTIHigh1 and x9900lCount < 2  then
  1931.           HUNTUltimateLow1 = true
  1932.           HUNT = true
  1933.         end
  1934.       end
  1935.  
  1936.     end
  1937.  
  1938.  
  1939.   else
  1940.  
  1941.     if payoutSwitch < 1 then
  1942.  
  1943.  
  1944.  
  1945.  
  1946.  
  1947.       if ((HUNTx100h and huntstreak100 >= changeTime) or (HUNTx330h and huntstreak330 >= changeTime) or (HUNTx400h and huntstreak400 >= changeTime)) then
  1948.  
  1949.         waiter100h = x100Hwait * x100hFactor * switcher100hh1
  1950.         waiter330h = x330Hwait * x330hFactor * switcher330hh1
  1951.  
  1952.         waiter100l = x100Lwait * x100lFactor * switcher100hl1
  1953.         waiter330l = x330Lwait * x330lFactor * switcher330hl1
  1954.  
  1955.  
  1956.  
  1957.         if (x330h >= x330Hwait * x330hFactor  * switcher330hh1 and goHigh >= 1)  then
  1958.           trigger = " SWITCH x330 HIGH "
  1959.           huntstreak100 = 196
  1960.           huntstreak330 = 0
  1961.           huntstreak400 = 0
  1962.           huntbet = huntbet * changeFactor
  1963.           if huntbet > maxbet * 0.6 then
  1964.             huntbet = maxbet * 0.6
  1965.           end
  1966.           HUNTx100h = true
  1967.           HUNTx330h = false
  1968.           HUNTx400h = false
  1969.           payoutSwitch += 1
  1970.         else
  1971.           if (x330l >= x330Lwait * x330lFactor  * switcher330hl1 and goLow >= 1) then
  1972.             trigger = " SWITCH x330 LOW "
  1973.             huntstreak100 = 196
  1974.             huntstreak330 = 0
  1975.             huntstreak400 = 0
  1976.             huntbet = huntbet * changeFactor
  1977.             if huntbet > maxbet * 0.6 then
  1978.               huntbet = maxbet * 0.6
  1979.             end
  1980.             HUNTx100l = true
  1981.             HUNTx100h = false
  1982.             HUNTx330h = false
  1983.             HUNTx400h = false
  1984.             payoutSwitch += 1
  1985.           else
  1986.             if (x100h >= x100Hwait * x100hFactor  * switcher100hh1 and goHigh >= 1)  then
  1987.               trigger = " SWITCH x100 HIGH "
  1988.               huntstreak100 = 196
  1989.               huntstreak330 = 0
  1990.               huntstreak400 = 0
  1991.               huntbet = huntbet * changeFactor
  1992.               if huntbet > maxbet * 0.6 then
  1993.                 huntbet = maxbet * 0.6
  1994.               end
  1995.               HUNTx100h = true
  1996.               HUNTx330h = false
  1997.               HUNTx400h = false
  1998.               payoutSwitch += 1
  1999.             else
  2000.               if (x100l >= x100Lwait * x100lFactor  * switcher100hl1 and goLow >= 1) then
  2001.                 trigger = " SWITCH x100 LOW "
  2002.                 huntstreak100 = 196
  2003.                 huntstreak330 = 0
  2004.                 huntstreak400 = 0
  2005.                 huntbet = huntbet * changeFactor
  2006.                 if huntbet > maxbet * 0.6 then
  2007.                   huntbet = maxbet * 0.6
  2008.                 end
  2009.                 HUNTx100l = true
  2010.                 HUNTx100h = false
  2011.                 HUNTx330h = false
  2012.                 HUNTx400h = false
  2013.                 payoutSwitch += 1
  2014.               end
  2015.             end
  2016.           end
  2017.         end
  2018.       end
  2019.  
  2020.       if ((HUNTx100l and huntstreak100 >= changeTime) or (HUNTx330l and huntstreak330 >= changeTime) or (HUNTx400l and huntstreak400 >= changeTime)) then
  2021.  
  2022.         waiter100h = x100Hwait * x100hFactor * switcher100lh1
  2023.         waiter330h = x330Hwait * x330hFactor * switcher330lh1
  2024.  
  2025.         waiter100l = x100Lwait * x100lFactor * switcher100ll1
  2026.         waiter330l = x330Lwait * x330lFactor * switcher330ll1
  2027.  
  2028.  
  2029.         if (x330l >= x330Lwait * x330lFactor  * switcher330ll1 and goLow >= 1)  then
  2030.           trigger = " SWITCH x330 LOW "
  2031.           huntstreak100 = 196
  2032.           huntstreak330 = 0
  2033.           huntstreak400 = 0
  2034.           huntbet = huntbet * changeFactor
  2035.           if huntbet > maxbet * 0.6 then
  2036.             huntbet = maxbet * 0.6
  2037.           end
  2038.           HUNTx100l = true
  2039.           HUNTx330l = false
  2040.           HUNTx400l = false
  2041.           payoutSwitch += 1
  2042.         else
  2043.           if (x330h >= x330Hwait * x330hFactor  * switcher330lh1 and goHigh >= 1) then
  2044.             trigger = " SWITCH x330 HIGH "
  2045.             huntstreak100 = 196
  2046.             huntstreak330 = 0
  2047.             huntstreak400 = 0
  2048.             huntbet = huntbet * changeFactor
  2049.             if huntbet > maxbet * 0.6 then
  2050.               huntbet = maxbet * 0.6
  2051.             end
  2052.             HUNTx100h = true
  2053.             HUNTx100l = false
  2054.             HUNTx330l = false
  2055.             HUNTx400l = false
  2056.             payoutSwitch += 1
  2057.           else
  2058.             if (x100l >= x100Lwait * x100lFactor  * switcher100ll1 and goLow >= 1)  then
  2059.               trigger = " SWITCH x100 LOW "
  2060.               huntstreak100 = 196
  2061.               huntstreak330 = 0
  2062.               huntstreak400 = 0
  2063.               huntbet = huntbet * changeFactor
  2064.               if huntbet > maxbet * 0.6 then
  2065.                 huntbet = maxbet * 0.6
  2066.               end
  2067.               HUNTx100l = true
  2068.               HUNTx330l = false
  2069.               HUNTx400l = false
  2070.               payoutSwitch += 1
  2071.             else
  2072.               if (x100h >= x100Hwait * x100hFactor  * switcher100lh1 and goHigh >= 1) then
  2073.                 trigger = " SWITCH x100 HIGH "
  2074.                 huntstreak100 = 196
  2075.                 huntstreak330 = 0
  2076.                 huntstreak400 = 0
  2077.                 huntbet = huntbet * changeFactor
  2078.                 if huntbet > maxbet * 0.6 then
  2079.                   huntbet = maxbet * 0.6
  2080.                 end
  2081.                 HUNTx100h = true
  2082.                 HUNTx100l = false
  2083.                 HUNTx330l = false
  2084.                 HUNTx400l = false
  2085.                 payoutSwitch += 1
  2086.               end
  2087.             end
  2088.           end
  2089.         end
  2090.       end
  2091.  
  2092.       if HUNTx990 then
  2093.  
  2094.         if (bethigh and x990h < x990Hwait * x990hFactor  * 2.2 and x990h >=x990Hwait * x990hFactor  and x990try >= 3 and payoutSwitch <= 2) then
  2095.  
  2096.  
  2097.  
  2098.           waiter100h = x100Hwait * x100hFactor * switcher100h990h1
  2099.           waiter330h = x330Hwait * x330hFactor * switcher330h990h1
  2100.  
  2101.           waiter100l = x100Lwait * x100lFactor * switcher100h990l1
  2102.           waiter330l = x330Lwait * x330lFactor * switcher330h990l1
  2103.  
  2104.  
  2105.  
  2106.           if (x330h >= x330Hwait * x330hFactor  * switcher330h990h1 and goHigh >= 2) then
  2107.             trigger = " SWITCH x330 HIGH "
  2108.             x990try = 0
  2109.             x990streak = 0
  2110.             HUNTx990 = false
  2111.             HUNTx100h = true
  2112.             payoutSwitch += 1
  2113.             huntstreak100 = 196
  2114.             chance990 = chance990base
  2115.             huntbet = huntbet * changeFactor
  2116.             if huntbet > maxbet * 0.6 then
  2117.               huntbet = maxbet * 0.6
  2118.             end
  2119.           else
  2120.  
  2121.             if (x330l >= x330Lwait * x330lFactor  * switcher330h990l1 and goLow >= 2)  then
  2122.               trigger = " SWITCH x330 LOW "
  2123.               x990try = 0
  2124.               x990streak = 0
  2125.               HUNTx990 = false
  2126.               HUNTx100l = true
  2127.               payoutSwitch += 1
  2128.               huntstreak100 = 196
  2129.               chance990 = chance990base
  2130.               huntbet = huntbet * changeFactor
  2131.               if huntbet > maxbet * 0.6 then
  2132.                 huntbet = maxbet * 0.6
  2133.               end
  2134.             else
  2135.  
  2136.               if (x100h >= x100Hwait * x100hFactor  * switcher100h990h1 and goHigh >= 2)  then
  2137.                 trigger = " SWITCH x100 HIGH "
  2138.                 x990try = 0
  2139.                 x990streak = 0
  2140.                 HUNTx990 = false
  2141.                 HUNTx100h = true
  2142.                 payoutSwitch += 1
  2143.                 huntstreak100 = 196
  2144.                 chance990 = chance990base
  2145.                 huntbet = huntbet * changeFactor
  2146.                 if huntbet > maxbet * 0.6 then
  2147.                   huntbet = maxbet * 0.6
  2148.                 end
  2149.               else
  2150.  
  2151.                 if (x100l >= x100Lwait * x100lFactor  * switcher100h990l1 and goLow >= 2) then
  2152.                   trigger = " SWITCH x100 LOW "
  2153.                   x990try = 0
  2154.                   x990streak = 0
  2155.                   HUNTx990 = false
  2156.                   HUNTx100l = true
  2157.                   payoutSwitch += 1
  2158.                   huntstreak100 = 196
  2159.                   chance990 = chance990base
  2160.                   huntbet = huntbet * changeFactor
  2161.                   if huntbet > maxbet * 0.6 then
  2162.                     huntbet = maxbet * 0.6
  2163.                   end
  2164.                 end
  2165.               end
  2166.             end
  2167.           end
  2168.         end
  2169.  
  2170.         if (bethigh and x990h < x990Hwait * x990hFactor  and x990try >= 2 and payoutSwitch <= 2) then
  2171.  
  2172.           waiter100h = x100Hwait * x100hFactor * switcher100h2990h1
  2173.           waiter330h = x330Hwait * x330hFactor * switcher330h2990h1
  2174.  
  2175.           waiter100l = x100Lwait * x100lFactor * switcher100h2990l1
  2176.           waiter330l = x330Lwait * x330lFactor * switcher330h2990l1
  2177.  
  2178.  
  2179.  
  2180.           if (x330h >= x330Hwait * x330hFactor  * switcher330h2990h1 and goHigh >= 1) then
  2181.             trigger = " SWITCH x330 HIGH "
  2182.             x990try = 0
  2183.             x990streak = 0
  2184.             HUNTx990 = false
  2185.             HUNTx100h = true
  2186.             payoutSwitch += 1
  2187.             huntstreak100 = 196
  2188.             chance990 = chance990base
  2189.             huntbet = huntbet * changeFactor
  2190.             if huntbet > maxbet * 0.6 then
  2191.               huntbet = maxbet * 0.6
  2192.             end
  2193.           else
  2194.  
  2195.             if (x330l >= x330Lwait * x330lFactor  * switcher330h2990l1 and goLow >= 1)  then
  2196.               trigger = " SWITCH x330 LOW "
  2197.               x990try = 0
  2198.               x990streak = 0
  2199.               HUNTx990 = false
  2200.               HUNTx100l = true
  2201.               payoutSwitch += 1
  2202.               huntstreak100 = 196
  2203.               chance990 = chance990base
  2204.               huntbet = huntbet * changeFactor
  2205.               if huntbet > maxbet * 0.6 then
  2206.                 huntbet = maxbet * 0.6
  2207.               end
  2208.             else
  2209.  
  2210.               if (x100h >= x100Hwait * x100hFactor  * switcher100h2990h1 and goHigh >= 1 )  then
  2211.                 trigger = " SWITCH x100 HIGH "
  2212.                 x990try = 0
  2213.                 x990streak = 0
  2214.                 HUNTx990 = false
  2215.                 HUNTx100h = true
  2216.                 payoutSwitch += 1
  2217.                 huntstreak100 = 196
  2218.                 chance990 = chance990base
  2219.                 huntbet = huntbet * changeFactor
  2220.                 if huntbet > maxbet * 0.6 then
  2221.                   huntbet = maxbet * 0.6
  2222.                 end
  2223.               else
  2224.  
  2225.                 if (x100l >= x100Lwait * x100lFactor  * switcher100h2990l1 and goLow >= 1) then
  2226.                   trigger = " SWITCH x100 LOW "
  2227.                   x990try = 0
  2228.                   x990streak = 0
  2229.                   HUNTx990 = false
  2230.                   HUNTx100l = true
  2231.                   payoutSwitch += 1
  2232.                   huntstreak100 = 196
  2233.                   chance990 = chance990base
  2234.                   huntbet = huntbet * changeFactor
  2235.                   if huntbet > maxbet * 0.6 then
  2236.                     huntbet = maxbet * 0.6
  2237.                   end
  2238.                 end
  2239.               end
  2240.             end
  2241.           end
  2242.         end
  2243.  
  2244.  
  2245.         if (not bethigh and x990l < x990Lwait * x990lFactor  * 2.2 and x990l >=x990Lwait * x990lFactor  and x990try >= 3 and payoutSwitch <= 2) then
  2246.  
  2247.           waiter100h = x100Hwait * x100hFactor * switcher100l990h1
  2248.           waiter330h = x330Hwait * x330hFactor * switcher330l990h1
  2249.  
  2250.           waiter100l = x100Lwait * x100lFactor * switcher100l990l1
  2251.           waiter330l = x330Lwait * x330lFactor * switcher330l990l1
  2252.  
  2253.  
  2254.           if (x330l >= x330Lwait * x330lFactor  * switcher330l990l1 and goLow >= 2)  then
  2255.             trigger = " SWITCH x330 LOW "
  2256.             x990try = 0
  2257.             x990streak = 0
  2258.             HUNTx990 = false
  2259.             HUNTx100l = true
  2260.             payoutSwitch += 1
  2261.             huntstreak100 = 196
  2262.             chance990 = chance990base
  2263.             huntbet = huntbet * changeFactor
  2264.             if huntbet > maxbet * 0.6 then
  2265.               huntbet = maxbet * 0.6
  2266.             end
  2267.           else
  2268.  
  2269.             if (x330h >= x330Hwait * x330hFactor  * switcher330l990h1 and goHigh >= 2) then
  2270.               trigger = " SWITCH x330 HIGH "
  2271.               x990try = 0
  2272.               x990streak = 0
  2273.               HUNTx990 = false
  2274.               HUNTx100h = true
  2275.               payoutSwitch += 1
  2276.               huntstreak100 = 196
  2277.               chance990 = chance990base
  2278.               huntbet = huntbet * changeFactor
  2279.               if huntbet > maxbet * 0.6 then
  2280.                 huntbet = maxbet * 0.6
  2281.               end
  2282.             else
  2283.  
  2284.               if (x100l >= x100Lwait * x100lFactor  * switcher100l990l1 and goLow >= 2) then
  2285.                 trigger = " SWITCH x100 LOW "
  2286.                 x990try = 0
  2287.                 x990streak = 2
  2288.                 HUNTx990 = false
  2289.                 HUNTx100l = true
  2290.                 payoutSwitch += 1
  2291.                 huntstreak100 = 196
  2292.                 chance990 = chance990base
  2293.                 huntbet = huntbet * changeFactor
  2294.                 if huntbet > maxbet * 0.6 then
  2295.                   huntbet = maxbet * 0.6
  2296.                 end
  2297.               else
  2298.  
  2299.                 if (x100h >= x100Hwait * x100hFactor  * switcher100l990h1 and goHigh >= 2)  then
  2300.                   trigger = " SWITCH x100 HIGH "
  2301.                   x990try = 0
  2302.                   x990streak = 0
  2303.                   HUNTx990 = false
  2304.                   HUNTx100h = true
  2305.                   payoutSwitch += 1
  2306.                   huntstreak100 = 196
  2307.                   chance990 = chance990base
  2308.                   huntbet = huntbet * changeFactor
  2309.                   if huntbet > maxbet * 0.6 then
  2310.                     huntbet = maxbet * 0.6
  2311.                   end
  2312.                 end
  2313.               end
  2314.             end
  2315.           end
  2316.         end
  2317.  
  2318.  
  2319.         if (not bethigh and x990l < x990Lwait * x990lFactor  and x990try >= 2 ) then
  2320.  
  2321.           waiter100h = x100Hwait * x100hFactor * switcher100l2990h1
  2322.           waiter330h = x330Hwait * x330hFactor * switcher330l2990h1
  2323.  
  2324.           waiter100l = x100Lwait * x100lFactor * switcher100l2990l1
  2325.           waiter330l = x330Lwait * x330lFactor * switcher330l2990l1
  2326.  
  2327.  
  2328.  
  2329.  
  2330.           if (x330l >= x330Lwait * x330lFactor  * switcher330l2990l1 and goLow >= 1)  then
  2331.             trigger = " SWITCH x330 LOW "
  2332.             x990try = 0
  2333.             x990streak = 0
  2334.             HUNTx990 = false
  2335.             HUNTx100l = true
  2336.             payoutSwitch += 1
  2337.             huntstreak100 = 196
  2338.             chance990 = chance990base
  2339.             huntbet = huntbet * changeFactor
  2340.             if huntbet > maxbet * 0.6 then
  2341.               huntbet = maxbet * 0.6
  2342.             end
  2343.           else
  2344.  
  2345.             if (x330h >= x330Hwait * x330hFactor  * switcher330l2990h1 and goHigh >= 1) then
  2346.               trigger = " SWITCH x330 HIGH "
  2347.               x990try = 0
  2348.               x990streak = 0
  2349.               HUNTx990 = false
  2350.               HUNTx100h = true
  2351.               payoutSwitch += 1
  2352.               huntstreak100 = 196
  2353.               chance990 = chance990base
  2354.               huntbet = huntbet * changeFactor
  2355.               if huntbet > maxbet * 0.6 then
  2356.                 huntbet = maxbet * 0.6
  2357.               end
  2358.             else
  2359.  
  2360.               if (x100l >= x100Lwait * x100lFactor * switcher100l2990l1 and goLow >= 1) then
  2361.                 trigger = " SWITCH x100 LOW "
  2362.                 x990try = 0
  2363.                 x990streak = 0
  2364.                 HUNTx990 = false
  2365.                 HUNTx100l = true
  2366.                 payoutSwitch += 1
  2367.                 huntstreak100 = 196
  2368.                 chance990 = chance990base
  2369.                 huntbet = huntbet * changeFactor
  2370.                 if huntbet > maxbet * 0.6 then
  2371.                   huntbet = maxbet * 0.6
  2372.                 end
  2373.               else
  2374.  
  2375.                 if (x100h >= x100Hwait * x100hFactor  * switcher100l2990h1 and goHigh >= 1)  then
  2376.                   trigger = " SWITCH x100 HIGH "
  2377.                   x990try = 0
  2378.                   x990streak = 0
  2379.                   HUNTx990 = false
  2380.                   HUNTx100h = true
  2381.                   payoutSwitch += 1
  2382.                   huntstreak100 = 196
  2383.                   chance990 = chance990base
  2384.                   huntbet = huntbet * changeFactor
  2385.                   if huntbet > maxbet * 0.6 then
  2386.                     huntbet = maxbet * 0.6
  2387.                   end
  2388.                 end
  2389.               end
  2390.             end
  2391.           end
  2392.         end
  2393.       end
  2394.  
  2395.  
  2396.  
  2397.     else
  2398.  
  2399.  
  2400.  
  2401.       if payoutSwitch < 2 then
  2402.  
  2403.  
  2404.  
  2405.         if ((HUNTx100h and huntstreak100 >= changeTime * 1.41) or (HUNTx330h and huntstreak330 >= changeTime * 1.41) or (HUNTx400h and huntstreak400 >= changeTime * 1.41)) then
  2406.  
  2407.           waiter100h = x100Hwait * x100hFactor * switcher100hh2
  2408.           waiter330h = x330Hwait * x330hFactor * switcher330hh2
  2409.  
  2410.           waiter100l = x100Lwait * x100lFactor * switcher100hl2
  2411.           waiter330l = x330Lwait * x330lFactor * switcher330hl2
  2412.  
  2413.  
  2414.  
  2415.           if (x330h >= x330Hwait * x330hFactor  * switcher330hh2 and goHigh >= 1)  then
  2416.             trigger = " SWITCH x330 HIGH 2 "
  2417.             huntstreak100 = 196
  2418.             huntstreak330 = 0
  2419.             huntstreak400 = 0
  2420.             huntbet = huntbet * changeFactor
  2421.             if huntbet > maxbet * 0.9 then
  2422.               huntbet = maxbet * 0.9
  2423.             end
  2424.             HUNTx100h = true
  2425.             HUNTx330h = false
  2426.             HUNTx400h = false
  2427.             payoutSwitch += 1
  2428.           else
  2429.             if (x330l >= x330Lwait * x330lFactor  * switcher330hl2 and goLow >= 1) then
  2430.               trigger = " SWITCH x330 LOW 2 "
  2431.               huntstreak100 = 196
  2432.               huntstreak330 = 0
  2433.               huntstreak400 = 0
  2434.               huntbet = huntbet * changeFactor
  2435.               if huntbet > maxbet * 0.9 then
  2436.                 huntbet = maxbet * 0.9
  2437.               end
  2438.               HUNTx100l = true
  2439.               HUNTx100h = false
  2440.               HUNTx330h = false
  2441.               HUNTx400h = false
  2442.               payoutSwitch += 1
  2443.             else
  2444.               if (x100h >= x100Hwait * x100hFactor  * switcher100hh2 and goHigh >= 1)  then
  2445.                 trigger = " SWITCH x100 HIGH 2 "
  2446.                 huntstreak100 = 196
  2447.                 huntstreak330 = 0
  2448.                 huntstreak400 = 0
  2449.                 huntbet = huntbet * changeFactor
  2450.                 if huntbet > maxbet * 0.9 then
  2451.                   huntbet = maxbet * 0.9
  2452.                 end
  2453.                 HUNTx100h = true
  2454.                 HUNTx330h = false
  2455.                 HUNTx400h = false
  2456.                 payoutSwitch += 1
  2457.               else
  2458.                 if (x100l >= x100Lwait * x100lFactor  * switcher100hl2 and goLow >= 1) then
  2459.                   trigger = " SWITCH x100 LOW 2 "
  2460.                   huntstreak100 = 196
  2461.                   huntstreak330 = 0
  2462.                   huntstreak400 = 0
  2463.                   huntbet = huntbet * changeFactor
  2464.                   if huntbet > maxbet * 0.9 then
  2465.                     huntbet = maxbet * 0.9
  2466.                   end
  2467.                   HUNTx100l = true
  2468.                   HUNTx100h = false
  2469.                   HUNTx330h = false
  2470.                   HUNTx400h = false
  2471.                   payoutSwitch += 1
  2472.                 end
  2473.               end
  2474.             end
  2475.           end
  2476.         end
  2477.  
  2478.         if ((HUNTx100l and huntstreak100 >= changeTime * 1.21) or (HUNTx330l and huntstreak330 >= changeTime * 1.21) or (HUNTx400l and huntstreak400 >= changeTime  * 1.21)) then
  2479.  
  2480.           waiter100h = x100Hwait * x100hFactor * switcher100lh2
  2481.           waiter330h = x330Hwait * x330hFactor * switcher330lh2
  2482.  
  2483.           waiter100l = x100Lwait * x100lFactor * switcher100ll2
  2484.           waiter330l = x330Lwait * x330lFactor * switcher330ll2
  2485.  
  2486.  
  2487.  
  2488.           if (x330l >= x330Lwait * x330lFactor  * switcher330ll2 and goLow >= 1)  then
  2489.             trigger = " SWITCH x330 LOW 2 "
  2490.             huntstreak100 = 196
  2491.             huntstreak330 = 0
  2492.             huntstreak400 = 0
  2493.             huntbet = huntbet * changeFactor
  2494.             if huntbet > maxbet * 0.9 then
  2495.               huntbet = maxbet * 0.9
  2496.             end
  2497.             HUNTx100l = true
  2498.             HUNTx330l = false
  2499.             HUNTx400l = false
  2500.             payoutSwitch += 1
  2501.           else
  2502.             if (x330h >= x330Hwait * x330hFactor  * switcher330lh2 and goHigh >= 1) then
  2503.               trigger = " SWITCH x330 HIGH 2 "
  2504.               huntstreak100 = 196
  2505.               huntstreak330 = 0
  2506.               huntstreak400 = 0
  2507.               huntbet = huntbet * changeFactor
  2508.               if huntbet > maxbet * 0.9 then
  2509.                 huntbet = maxbet * 0.9
  2510.               end
  2511.               HUNTx100h = true
  2512.               HUNTx100l = false
  2513.               HUNTx330l = false
  2514.               HUNTx400l = false
  2515.               payoutSwitch += 1
  2516.             else
  2517.               if (x100l >= x100Lwait * x100lFactor  * switcher100ll2 and goLow >= 1)  then
  2518.                 trigger = " SWITCH x100 LOW 2 "
  2519.                 huntstreak100 = 196
  2520.                 huntstreak330 = 0
  2521.                 huntstreak400 = 0
  2522.                 huntbet = huntbet * changeFactor
  2523.                 if huntbet > maxbet * 0.9 then
  2524.                   huntbet = maxbet * 0.9
  2525.                 end
  2526.                 HUNTx100l = true
  2527.                 HUNTx330l = false
  2528.                 HUNTx400l = false
  2529.                 payoutSwitch += 1
  2530.               else
  2531.                 if (x100h >= x100Hwait * x100hFactor  * switcher100lh2 and goHigh >= 1) then
  2532.                   trigger = " SWITCH x100 HIGH 2 "
  2533.                   huntstreak100 = 196
  2534.                   huntstreak330 = 0
  2535.                   huntstreak400 = 0
  2536.                   huntbet = huntbet * changeFactor
  2537.                   if huntbet > maxbet * 0.9 then
  2538.                     huntbet = maxbet * 0.9
  2539.                   end
  2540.                   HUNTx100h = true
  2541.                   HUNTx100l = false
  2542.                   HUNTx330l = false
  2543.                   HUNTx400l = false
  2544.                   payoutSwitch += 1
  2545.                 end
  2546.               end
  2547.             end
  2548.           end
  2549.         end
  2550.  
  2551.         if HUNTx990 then
  2552.  
  2553.           if (bethigh and x990h < x990Hwait * x990hFactor  * 2.2 and x990h >=x990Hwait * x990hFactor  and x990try >= 4 and payoutSwitch <= 2) then
  2554.  
  2555.  
  2556.             waiter100h = x100Hwait * x100hFactor * switcher100h990h2
  2557.             waiter330h = x330Hwait * x330hFactor * switcher330h990h2
  2558.  
  2559.             waiter100l = x100Lwait * x100lFactor * switcher100h990l2
  2560.             waiter330l = x330Lwait * x330lFactor * switcher330h990l2
  2561.  
  2562.  
  2563.  
  2564.  
  2565.             if (x330h >= x330Hwait * x330hFactor  * switcher330h990h2 and goHigh >= 2) then
  2566.               trigger = " SWITCH x330 HIGH 2 "
  2567.               x990try = 0
  2568.               x990streak = 0
  2569.               HUNTx990 = false
  2570.               HUNTx100h = true
  2571.               payoutSwitch += 1
  2572.               huntstreak100 = 196
  2573.               chance990 = chance990base
  2574.               huntbet = huntbet * changeFactor
  2575.               if huntbet > maxbet * 0.9 then
  2576.                 huntbet = maxbet * 0.9
  2577.               end
  2578.             else
  2579.  
  2580.               if (x330l >= x330Lwait * x330lFactor  * switcher330h990l2 and goLow >= 2)  then
  2581.                 trigger = " SWITCH x330 LOW 2 "
  2582.                 x990try = 0
  2583.                 x990streak = 0
  2584.                 HUNTx990 = false
  2585.                 HUNTx100l = true
  2586.                 payoutSwitch += 1
  2587.                 huntstreak100 = 196
  2588.                 chance990 = chance990base
  2589.                 huntbet = huntbet * changeFactor
  2590.                 if huntbet > maxbet * 0.9 then
  2591.                   huntbet = maxbet * 0.9
  2592.                 end
  2593.               else
  2594.  
  2595.                 if (x100h >= x100Hwait * x100hFactor  * switcher100h990h2  and goHigh >= 2)  then
  2596.                   trigger = " SWITCH x100 HIGH 2 "
  2597.                   x990try = 0
  2598.                   x990streak = 0
  2599.                   HUNTx990 = false
  2600.                   HUNTx100h = true
  2601.                   payoutSwitch += 1
  2602.                   huntstreak100 = 196
  2603.                   chance990 = chance990base
  2604.                   huntbet = huntbet * changeFactor
  2605.                   if huntbet > maxbet * 0.9 then
  2606.                     huntbet = maxbet * 0.9
  2607.                   end
  2608.                 else
  2609.  
  2610.                   if (x100l >= x100Lwait * x100lFactor  * switcher100h990l2 and goLow >= 2) then
  2611.                     trigger = " SWITCH x100 LOW 2 "
  2612.                     x990try = 0
  2613.                     x990streak = 0
  2614.                     HUNTx990 = false
  2615.                     HUNTx100l = true
  2616.                     payoutSwitch += 1
  2617.                     huntstreak100 = 196
  2618.                     chance990 = chance990base
  2619.                     huntbet = huntbet * changeFactor
  2620.                     if huntbet > maxbet * 0.9 then
  2621.                       huntbet = maxbet * 0.9
  2622.                     end
  2623.                   end
  2624.                 end
  2625.               end
  2626.             end
  2627.           end
  2628.  
  2629.           if (bethigh and x990h < x990Hwait * x990hFactor  and x990try >= 2 and payoutSwitch <= 2) then
  2630.  
  2631.             waiter100h = x100Hwait * x100hFactor * switcher100h2990h2
  2632.             waiter330h = x330Hwait * x330hFactor * switcher330h2990h2
  2633.  
  2634.             waiter100l = x100Lwait * x100lFactor * switcher100h2990l2
  2635.             waiter330l = x330Lwait * x330lFactor * switcher330h2990l2
  2636.  
  2637.  
  2638.  
  2639.  
  2640.             if (x330h >= x330Hwait * x330hFactor  *switcher330h2990h2 and goHigh >= 1) then
  2641.               trigger = " SWITCH x330 HIGH 2 "
  2642.               x990try = 0
  2643.               x990streak = 0
  2644.               HUNTx990 = false
  2645.               HUNTx100h = true
  2646.               payoutSwitch += 1
  2647.               huntstreak100 = 196
  2648.               chance990 = chance990base
  2649.               huntbet = huntbet * changeFactor
  2650.               if huntbet > maxbet * 0.9 then
  2651.                 huntbet = maxbet * 0.9
  2652.               end
  2653.             else
  2654.  
  2655.               if (x330l >= x330Lwait * x330lFactor  * switcher330h2990l2 and goLow >= 1)  then
  2656.                 trigger = " SWITCH x330 LOW 1 "
  2657.                 x990try = 0
  2658.                 x990streak = 0
  2659.                 HUNTx990 = false
  2660.                 HUNTx100l = true
  2661.                 payoutSwitch += 1
  2662.                 huntstreak100 = 196
  2663.                 chance990 = chance990base
  2664.                 huntbet = huntbet * changeFactor
  2665.                 if huntbet > maxbet * 0.9 then
  2666.                   huntbet = maxbet * 0.9
  2667.                 end
  2668.               else
  2669.  
  2670.                 if (x100h >= x100Hwait * x100hFactor  * switcher100h2990h2 and goHigh >= 1 )  then
  2671.                   trigger = " SWITCH x100 HIGH 2 "
  2672.                   x990try = 0
  2673.                   x990streak = 0
  2674.                   HUNTx990 = false
  2675.                   HUNTx100h = true
  2676.                   payoutSwitch += 1
  2677.                   huntstreak100 = 196
  2678.                   chance990 = chance990base
  2679.                   huntbet = huntbet * changeFactor
  2680.                   if huntbet > maxbet * 0.9 then
  2681.                     huntbet = maxbet * 0.9
  2682.                   end
  2683.                 else
  2684.  
  2685.                   if (x100l >= x100Lwait * x100lFactor  * switcher100h2990l2 and goLow >= 1) then
  2686.                     trigger = " SWITCH x100 LOW 2 "
  2687.                     x990try = 0
  2688.                     x990streak = 0
  2689.                     HUNTx990 = false
  2690.                     HUNTx100l = true
  2691.                     payoutSwitch += 1
  2692.                     huntstreak100 = 196
  2693.                     chance990 = chance990base
  2694.                     huntbet = huntbet * changeFactor
  2695.                     if huntbet > maxbet * 0.9 then
  2696.                       huntbet = maxbet * 0.9
  2697.                     end
  2698.                   end
  2699.                 end
  2700.               end
  2701.             end
  2702.           end
  2703.  
  2704.  
  2705.           if (not bethigh and x990l < x990Lwait * x990lFactor  * 2.2 and x990l >=x990Lwait * x990lFactor  and x990try >= 4 and payoutSwitch <= 2) then
  2706.  
  2707.             waiter100h = x100Hwait * x100hFactor * switcher100l990h2
  2708.             waiter330h = x330Hwait * x330hFactor * switcher330l990h2
  2709.  
  2710.             waiter100l = x100Lwait * x100lFactor * switcher100l990l2
  2711.             waiter330l = x330Lwait * x330lFactor * switcher330l990l2
  2712.  
  2713.  
  2714.  
  2715.  
  2716.             if (x330l >= x330Lwait * x330lFactor  * switcher330l990l2 and goLow >= 2)  then
  2717.               trigger = " SWITCH x330 LOW 2 "
  2718.               x990try = 0
  2719.               x990streak = 0
  2720.               HUNTx990 = false
  2721.               HUNTx100l = true
  2722.               payoutSwitch += 1
  2723.               huntstreak100 = 196
  2724.               chance990 = chance990base
  2725.               huntbet = huntbet * changeFactor
  2726.               if huntbet > maxbet * 0.9 then
  2727.                 huntbet = maxbet * 0.9
  2728.               end
  2729.             else
  2730.  
  2731.               if (x330h >= x330Hwait * x330hFactor  * switcher330l990h2 and goHigh >= 2) then
  2732.                 trigger = " SWITCH x330 HIGH 2 "
  2733.                 x990try = 0
  2734.                 x990streak = 0
  2735.                 HUNTx990 = false
  2736.                 HUNTx100h = true
  2737.                 payoutSwitch += 1
  2738.                 huntstreak100 = 196
  2739.                 chance990 = chance990base
  2740.                 huntbet = huntbet * changeFactor
  2741.                 if huntbet > maxbet * 0.9 then
  2742.                   huntbet = maxbet * 0.9
  2743.                 end
  2744.               else
  2745.  
  2746.                 if (x100l >= x100Lwait * x100lFactor  * switcher100l990l2 and goLow >= 2) then
  2747.                   trigger = " SWITCH x100 LOW 2 "
  2748.                   x990try = 0
  2749.                   x990streak = 2
  2750.                   HUNTx990 = false
  2751.                   HUNTx100l = true
  2752.                   payoutSwitch += 1
  2753.                   huntstreak100 = 196
  2754.                   chance990 = chance990base
  2755.                   huntbet = huntbet * changeFactor
  2756.                   if huntbet > maxbet * 0.9 then
  2757.                     huntbet = maxbet * 0.9
  2758.                   end
  2759.                 else
  2760.  
  2761.                   if (x100h >= x100Hwait * x100hFactor  * switcher100l990h2 and goHigh >= 2)  then
  2762.                     trigger = " SWITCH x100 HIGH 2 "
  2763.                     x990try = 0
  2764.                     x990streak = 0
  2765.                     HUNTx990 = false
  2766.                     HUNTx100h = true
  2767.                     payoutSwitch += 1
  2768.                     huntstreak100 = 196
  2769.                     chance990 = chance990base
  2770.                     huntbet = huntbet * changeFactor
  2771.                     if huntbet > maxbet * 0.9 then
  2772.                       huntbet = maxbet * 0.9
  2773.                     end
  2774.                   end
  2775.                 end
  2776.               end
  2777.             end
  2778.           end
  2779.  
  2780.  
  2781.           if (not bethigh and x990l < x990Lwait * x990lFactor  and x990try >= 3 ) then
  2782.  
  2783.             waiter100h = x100Hwait * x100hFactor * switcher100l2990h2
  2784.             waiter330h = x330Hwait * x330hFactor * switcher330l2990h2
  2785.  
  2786.             waiter100l = x100Lwait * x100lFactor * switcher100l2990l2
  2787.             waiter330l = x330Lwait * x330lFactor * switcher330l2990l2
  2788.  
  2789.  
  2790.             if (x330l >= x330Lwait * x330lFactor  * switcher330l2990l2 and goLow >= 1)  then
  2791.               trigger = " SWITCH x330 LOW 2 "
  2792.               x990try = 0
  2793.               x990streak = 0
  2794.               HUNTx990 = false
  2795.               HUNTx100l = true
  2796.               payoutSwitch += 1
  2797.               huntstreak100 = 196
  2798.               chance990 = chance990base
  2799.               huntbet = huntbet * changeFactor
  2800.               if huntbet > maxbet * 0.9 then
  2801.                 huntbet = maxbet * 0.9
  2802.               end
  2803.             else
  2804.  
  2805.               if (x330h >= x330Hwait * x330hFactor  * switcher330l2990h2 and goHigh >= 1) then
  2806.                 trigger = " SWITCH x330 HIGH 2 "
  2807.                 x990try = 0
  2808.                 x990streak = 0
  2809.                 HUNTx990 = false
  2810.                 HUNTx100h = true
  2811.                 payoutSwitch += 1
  2812.                 huntstreak100 = 196
  2813.                 chance990 = chance990base
  2814.                 huntbet = huntbet * changeFactor
  2815.                 if huntbet > maxbet * 0.9 then
  2816.                   huntbet = maxbet * 0.9
  2817.                 end
  2818.               else
  2819.  
  2820.                 if (x100l >= x100Lwait * x100lFactor * switcher100l2990l2 and goLow >= 1) then
  2821.                   trigger = " SWITCH x100 LOW 2 "
  2822.                   x990try = 0
  2823.                   x990streak = 0
  2824.                   HUNTx990 = false
  2825.                   HUNTx100l = true
  2826.                   payoutSwitch += 1
  2827.                   huntstreak100 = 196
  2828.                   chance990 = chance990base
  2829.                   huntbet = huntbet * changeFactor
  2830.                   if huntbet > maxbet * 0.9 then
  2831.                     huntbet = maxbet * 0.9
  2832.                   end
  2833.                 else
  2834.  
  2835.                   if (x100h >= x100Hwait * x100hFactor  * switcher100l2990h2 and goHigh >= 1)  then
  2836.                     trigger = " SWITCH x100 HIGH 2 "
  2837.                     x990try = 0
  2838.                     x990streak = 0
  2839.                     HUNTx990 = false
  2840.                     HUNTx100h = true
  2841.                     payoutSwitch += 1
  2842.                     huntstreak100 = 196
  2843.                     chance990 = chance990base
  2844.                     huntbet = huntbet * changeFactor
  2845.                     if huntbet > maxbet * 0.9 then
  2846.                       huntbet = maxbet * 0.9
  2847.                     end
  2848.                   end
  2849.                 end
  2850.               end
  2851.             end
  2852.           end
  2853.         end
  2854.       end
  2855.     end
  2856.   end
  2857.   -----------------------------------
  2858.  
  2859.  
  2860.  
  2861.   if YOLOHigh or YOLOLow then
  2862.  
  2863.     name = " YOLO HUNT "
  2864.  
  2865.     chancecalc = math.random(1,10) / 2
  2866.     nextbet = huntbet * 2
  2867.  
  2868.     chance = chancecalc
  2869.  
  2870.  
  2871.     if YOLOHigh then
  2872.       bethigh = true
  2873.     end
  2874.     if YOLOLow then
  2875.       bethigh = false
  2876.     end
  2877.  
  2878.  
  2879.     if YOLOstreak >= 5 then
  2880.       YOLOHigh = false
  2881.       YOLOLow = false
  2882.       HUNT = false
  2883.       chancecalc = 0
  2884.       chance = basechance
  2885.       nextbet = prebet
  2886.       YOLOstreak = 0
  2887.     end
  2888.   end
  2889.  
  2890.  
  2891.  
  2892.   -----------------------------------
  2893.  
  2894.  
  2895.  
  2896.  
  2897.  
  2898.  
  2899.   -----------------------------------
  2900.  
  2901.   if HUNTLucky then
  2902.  
  2903.     name = " LUCKY HUNT "
  2904.  
  2905.  
  2906.     if LUCKYstreak == -1 then
  2907.       chancecalc = LBC
  2908.       nextbet = huntbet * 2
  2909.       if prefSideHigh then
  2910.         bethigh = true
  2911.         if goHigh >= 2 then
  2912.           luckyRolls = 12
  2913.         else
  2914.           if goHigh >= 1 then
  2915.             luckyRolls = 10
  2916.           else
  2917.             luckyRolls = 7
  2918.           end
  2919.         end
  2920.       else
  2921.         bethigh = false
  2922.         if goLow >= 2 then
  2923.           luckyRolls = 12
  2924.         else
  2925.           if goLow >= 1 then
  2926.             luckyRolls = 10
  2927.           else
  2928.             luckyRolls = 7
  2929.           end
  2930.         end
  2931.       end
  2932.       LUCKYstreak = 0
  2933.     end
  2934.  
  2935.  
  2936.     if  LUCKYstreak >= 0 then
  2937.       chance = chancecalc
  2938.       nextbet = huntbet * 2
  2939.     end
  2940.  
  2941.     if  LUCKYstreak >= luckyRolls then
  2942.       HUNTLucky = false
  2943.       HUNT = false
  2944.       chancecalc = 0
  2945.       chance = basechance
  2946.       nextbet = prebet
  2947.       LUCKYstreak = -1
  2948.     end
  2949.   end
  2950.  
  2951.  
  2952.   -----------HUNTx100-----------------
  2953.   if (HUNTx100h or HUNTx100l) then
  2954.  
  2955.  
  2956.  
  2957.     chance =  0.9900
  2958.     nextbet = huntbet
  2959.  
  2960.  
  2961.     if huntstreak100 >= 45 then
  2962.       nextbet = huntbet * 3
  2963.     end
  2964.  
  2965.  
  2966.  
  2967.     if ((HUNTx100h and goHigh >= 2) or (HUNTx100l and goLow >= 2))  then
  2968.       name3 = "SHORT"
  2969.  
  2970.       if huntstreak100 >= 85 then
  2971.         chance = 0.7700
  2972.       end
  2973.      
  2974.       if huntstreak100 >= 95 then
  2975.         chance = 0.6600
  2976.       end
  2977.      
  2978.       if huntstreak100 >= 105 then
  2979.         chance = 0.5500
  2980.       end
  2981.      
  2982.       if huntstreak100 >= 125 then
  2983.         chance = 0.4100
  2984.       end
  2985.  
  2986.       if huntstreak100 >= 175 then
  2987.         nextbet = huntbet * 8.5
  2988.         chance = 0.9900
  2989.       end
  2990.  
  2991.       if huntstreak100 >= 195 then
  2992.         chance = 0.5500
  2993.       end
  2994.  
  2995.       if huntstreak100 >= 235 then
  2996.         chance = 0.4100
  2997.       end
  2998.  
  2999.       if huntstreak100 >= 275 then
  3000.         chance = 0.3300
  3001.       end
  3002.  
  3003.       if huntstreak100 >= 315 then
  3004.         chance = 0.2400
  3005.       end
  3006.  
  3007.       if huntstreak100 >= 360 then
  3008.         chance = 0.1500
  3009.       end
  3010.  
  3011.       if huntstreak100 >= 410 then
  3012.         if HUNTx100h then
  3013.           bethigh = true
  3014.         end
  3015.         if HUNTx100l then
  3016.           bethigh = false
  3017.         end
  3018.         huntstreak100 = 0
  3019.         HUNTx100h = false
  3020.         HUNTx100l = false
  3021.         HUNTx990 = true
  3022.       end
  3023.  
  3024.     else
  3025.  
  3026.       if ((HUNTx100h and goHigh >= 1 and goHigh < 2) or (HUNTx100l and goLow >= 1 and goLow < 2))  then
  3027.         name3 = "MID"
  3028.  
  3029.         if huntstreak100 >= 95 then
  3030.           chance = 0.7700
  3031.         end
  3032.        
  3033.         if huntstreak100 >= 105 then
  3034.           chance = 0.6600
  3035.         end
  3036.        
  3037.         if huntstreak100 >= 115 then
  3038.           chance = 0.5500
  3039.         end
  3040.  
  3041.         if huntstreak100 >= 145 then
  3042.           chance = 0.4100
  3043.         end
  3044.  
  3045.         if huntstreak100 >= 185 then
  3046.           nextbet = huntbet * 8.5
  3047.           chance = 0.9900
  3048.         end
  3049.  
  3050.         if huntstreak100 >= 215 then
  3051.           chance = 0.5500
  3052.         end
  3053.  
  3054.         if huntstreak100 >= 265 then
  3055.           chance = 0.4100
  3056.         end
  3057.  
  3058.         if huntstreak100 >= 315 then
  3059.           chance = 0.3300
  3060.         end
  3061.  
  3062.         if huntstreak100 >= 365 then
  3063.           chance = 0.2400
  3064.         end
  3065.  
  3066.         if huntstreak100 >= 420 then
  3067.           chance = 0.1500
  3068.         end
  3069.  
  3070.         if huntstreak100 >= 480 then
  3071.           if HUNTx100h then
  3072.             bethigh = true
  3073.           end
  3074.           if HUNTx100l then
  3075.             bethigh = false
  3076.           end
  3077.           huntstreak100 = 0
  3078.           HUNTx100h = false
  3079.           HUNTx100l = false
  3080.           HUNTx990 = true
  3081.         end
  3082.  
  3083.       else
  3084.  
  3085.         name3 = "LONG"
  3086.  
  3087.         if huntstreak100 >= 100 then
  3088.           chance = 0.7700
  3089.         end
  3090.        
  3091.         if huntstreak100 >= 110 then
  3092.           chance = 0.6600
  3093.         end
  3094.        
  3095.         if huntstreak100 >= 120 then
  3096.           chance = 0.5500
  3097.         end
  3098.        
  3099.         if huntstreak100 >= 155 then
  3100.           chance = 0.4100
  3101.         end
  3102.  
  3103.         if huntstreak100 >= 195 then
  3104.           nextbet = huntbet * 8.5
  3105.           chance = 0.9900
  3106.         end
  3107.  
  3108.         if huntstreak100 >= 230 then
  3109.           chance = 0.5500
  3110.         end
  3111.  
  3112.         if huntstreak100 >= 285 then
  3113.           chance = 0.4100
  3114.         end
  3115.  
  3116.         if huntstreak100 >= 340 then
  3117.           chance = 0.3300
  3118.         end
  3119.  
  3120.         if huntstreak100 >= 395 then
  3121.           chance = 0.2400
  3122.         end
  3123.  
  3124.         if huntstreak100 >= 455 then
  3125.           chance = 0.1500
  3126.         end
  3127.  
  3128.         if huntstreak100 >= 520 then
  3129.           if HUNTx100h then
  3130.             bethigh = true
  3131.           end
  3132.           if HUNTx100l then
  3133.             bethigh = false
  3134.           end
  3135.           huntstreak100 = 0
  3136.           HUNTx100h = false
  3137.           HUNTx100l = false
  3138.           HUNTx990 = true
  3139.         end
  3140.       end
  3141.     end
  3142.  
  3143.     if HUNTx100h then
  3144.       name = " HUNT x100+ HIGH "
  3145.       bethigh = true
  3146.     end
  3147.     if HUNTx100l then
  3148.       name = " HUNT x100+ LOW "
  3149.       bethigh = false
  3150.     end
  3151.   end
  3152.   ------------------------------------
  3153.  
  3154.  
  3155.  
  3156.   -----------HUNTx330-----------------
  3157.   if (HUNTx330h or HUNTx330l) then
  3158.  
  3159.     chance =  0.420000
  3160.     nextbet = huntbet * 4
  3161.  
  3162.  
  3163.     if huntstreak330 >= 60 then
  3164.       nextbet = huntbet * 8.5
  3165.     end
  3166.  
  3167.  
  3168.     if ((HUNTx330h and goHigh >= 2) or (HUNTx330l and goLow >= 2))  then
  3169.       name3 = "SHORT"
  3170.       if huntstreak330 >= 130 then
  3171.         chance =  0.3600
  3172.       end
  3173.  
  3174.       if huntstreak330 >= 190 then
  3175.         chance =  0.2300
  3176.       end
  3177.  
  3178.       if huntstreak330 >= 250 then
  3179.         chance =  0.1300
  3180.       end
  3181.  
  3182.       if huntstreak330 >= 310 then
  3183.         if HUNTx330h then
  3184.           bethigh = true
  3185.         end
  3186.         if HUNTx330l then
  3187.           bethigh = false
  3188.         end
  3189.         huntstreak330 = 0
  3190.         HUNTx990 = true
  3191.         HUNTx330h = false
  3192.         HUNTx330l = false
  3193.       end
  3194.  
  3195.     else
  3196.  
  3197.       if ((HUNTx330h and goHigh >= 1 and goHigh < 2) or (HUNTx330l and goLow >=1 and goLow < 2))  then
  3198.         name3 = "MID"
  3199.         if huntstreak330 >= 150 then
  3200.           chance =  0.3600
  3201.         end
  3202.  
  3203.         if huntstreak330 >= 220 then
  3204.           chance =  0.2300
  3205.         end
  3206.  
  3207.         if huntstreak330 >= 290 then
  3208.           chance =  0.1300
  3209.         end
  3210.  
  3211.         if huntstreak330 >= 360 then
  3212.           if HUNTx330h then
  3213.             bethigh = true
  3214.           end
  3215.           if HUNTx330l then
  3216.             bethigh = false
  3217.           end
  3218.           huntstreak330 = 0
  3219.           HUNTx990 = true
  3220.           HUNTx330h = false
  3221.           HUNTx330l = false
  3222.         end
  3223.  
  3224.       else
  3225.  
  3226.         name3 = "LONG"
  3227.         if huntstreak330 >= 170 then
  3228.           chance =  0.3600
  3229.         end
  3230.  
  3231.         if huntstreak330 >= 260 then
  3232.           chance =  0.2300
  3233.         end
  3234.  
  3235.         if huntstreak330 >= 350 then
  3236.           chance =  0.1300
  3237.         end
  3238.  
  3239.         if huntstreak330 >= 440 then
  3240.           if HUNTx330h then
  3241.             bethigh = true
  3242.           end
  3243.           if HUNTx330l then
  3244.             bethigh = false
  3245.           end
  3246.           huntstreak330 = 0
  3247.           HUNTx990 = true
  3248.           HUNTx330h = false
  3249.           HUNTx330l = false
  3250.         end
  3251.       end
  3252.     end
  3253.  
  3254.  
  3255.     if HUNTx330h then
  3256.       name = " HUNT x330+ HIGH "
  3257.       bethigh = true
  3258.     end
  3259.     if HUNTx330l then
  3260.       name = " HUNT x330+ LOW "
  3261.       bethigh = false
  3262.     end
  3263.   end
  3264.   ------------------------------------
  3265.  
  3266.  
  3267.  
  3268.   -----------HUNTx400----------------
  3269.   if (HUNTx400h or HUNTx400l) then
  3270.  
  3271.     chance = 0.2500
  3272.     nextbet = huntbet * 4
  3273.  
  3274.     if huntstreak400 >= 70 then
  3275.       nextbet = huntbet * 8.5
  3276.     end
  3277.  
  3278.     if ((HUNTx400h and goHigh >= 2) or (HUNTx400l and goLow >= 2))  then
  3279.       if huntstreak400 >= 120 then
  3280.         chance =  0.1400
  3281.       end
  3282.  
  3283.       if huntstreak400 >= 220 then
  3284.         if HUNTx400h then
  3285.           bethigh = true
  3286.         end
  3287.         if HUNTx400l then
  3288.           bethigh = false
  3289.         end
  3290.         huntstreak400 = 0
  3291.         HUNTx400h = false
  3292.         HUNTx400l = false
  3293.         HUNTx990 = true
  3294.       end
  3295.  
  3296.     else
  3297.  
  3298.       if ((HUNTx400h and goHigh >= 1 and goHigh < 2) or (HUNTx400l and goLow >= 1 and goLow < 2))  then
  3299.         if huntstreak400 >= 145 then
  3300.           chance =  0.1400
  3301.         end
  3302.  
  3303.         if huntstreak400 >= 295 then
  3304.           if HUNTx400h then
  3305.             bethigh = true
  3306.           end
  3307.           if HUNTx400l then
  3308.             bethigh = false
  3309.           end
  3310.           huntstreak400 = 0
  3311.           HUNTx400h = false
  3312.           HUNTx400l = false
  3313.           HUNTx990 = true
  3314.         end
  3315.  
  3316.       else
  3317.  
  3318.         if huntstreak400 >= 170 then
  3319.           chance =  0.1400
  3320.         end
  3321.  
  3322.         if huntstreak400 >= 370 then
  3323.           if HUNTx400h then
  3324.             bethigh = true
  3325.           end
  3326.           if HUNTx400l then
  3327.             bethigh = false
  3328.           end
  3329.           huntstreak400 = 0
  3330.           HUNTx400h = false
  3331.           HUNTx400l = false
  3332.           HUNTx990 = true
  3333.         end
  3334.       end
  3335.     end
  3336.  
  3337.     if HUNTx400h then
  3338.       name = " HUNT x400+ HIGH "
  3339.       bethigh = true
  3340.     end
  3341.     if HUNTx400l then
  3342.       name = " HUNT x400+ LOW "
  3343.       bethigh = false
  3344.     end
  3345.   end
  3346.   ------------------------------------
  3347.  
  3348.   ------------HUNTx990----------------
  3349.   if HUNTx990 then
  3350.  
  3351.  
  3352.     if x990streak == 0 then
  3353.       x990try = 1
  3354.     end
  3355.  
  3356.  
  3357.  
  3358.     if x990streak >= 110 then
  3359.  
  3360.       huntbet = huntbet * 1.03
  3361.  
  3362.  
  3363.       if bethigh then
  3364.  
  3365.         if x1650h >= x1650Hwait * x1650hFactor * 0.7 and chance990 >= 0.06 then
  3366.  
  3367.           chance990 = chance990 - 0.0035
  3368.  
  3369.         end
  3370.  
  3371.  
  3372.         if x1650h >= x1650Hwait * x1650hFactor * 0.4 and chance990 >= 0.06 then
  3373.  
  3374.           chance990 = chance990 - 0.0035
  3375.  
  3376.         end
  3377.  
  3378.  
  3379.         if chance990 >= 0.06 then
  3380.  
  3381.           chance990 = chance990 - 0.0035
  3382.  
  3383.         end
  3384.  
  3385.  
  3386.       else
  3387.  
  3388.         if x1650l >= x1650Lwait * x1650lFactor * 0.7 and chance990 >= 0.06 then
  3389.  
  3390.           chance990 = chance990 - 0.0035
  3391.  
  3392.         end
  3393.  
  3394.  
  3395.         if x1650l >= x1650Lwait * x1650lFactor * 0.4 and chance990 >= 0.06 then
  3396.  
  3397.           chance990 = chance990 - 0.0035
  3398.  
  3399.         end
  3400.  
  3401.         if chance990 >= 0.06 then
  3402.  
  3403.           chance990 = chance990 - 0.007
  3404.  
  3405.         end
  3406.  
  3407.       end
  3408.  
  3409.  
  3410.       if bethigh and chance990 > 0.03 then
  3411.         if x2475h >= x2475Hwait then
  3412.           chance990 = chance990 - 0.0035
  3413.         end
  3414.       end
  3415.  
  3416.  
  3417.       if not bethigh and chance990 > 0.03 then
  3418.         if x2475l >= x2475Lwait then
  3419.           chance990 = chance990 - 0.0035
  3420.         end
  3421.       end
  3422.  
  3423.  
  3424.       if bethigh and chance990 > 0.01 then
  3425.         if x4950h >= x4950Hwait then
  3426.           chance990 = chance990 - 0.0035
  3427.         end
  3428.       end
  3429.  
  3430.  
  3431.       if not bethigh and chance990 > 0.01 then
  3432.         if x4950l >= x4950Lwait then
  3433.           chance990 = chance990 - 0.0035
  3434.         end
  3435.       end
  3436.  
  3437.  
  3438.       x990streak = 1
  3439.       x990try += 1
  3440.     end
  3441.  
  3442.  
  3443.     if chance990 <= 0.01 then
  3444.       chance990 = 0.01
  3445.     end
  3446.  
  3447.  
  3448.     chance = chance990
  3449.     nextbet = huntbet * 8.5
  3450.  
  3451.  
  3452.     if bethigh then
  3453.       name = " HUNT x990+ HIGH "
  3454.     end
  3455.     if not bethigh then
  3456.       name = " HUNT x990+ LOW "
  3457.     end
  3458.  
  3459.   end
  3460.  
  3461.  
  3462.   ------------------------------------
  3463.  
  3464.   ------------ULTI4-HUNT----------------
  3465.  
  3466.   if (HUNTUltimateHigh4 or HUNTUltimateLow4) then
  3467.  
  3468.     chance = 0.0400
  3469.  
  3470.     if ULTIstreak == -1 then
  3471.       ULTIbet = (curbal / ULTIcalc)
  3472.       if ULTIbet < minbet * 2.2 then
  3473.         ULTIbet =  minbet * 2.2
  3474.       end
  3475.       ULTIstreak = 0
  3476.     end
  3477.  
  3478.     nextbet = ULTIbet
  3479.  
  3480.     if ULTIstreak >= 300 then
  3481.       nextbet = ULTIbet * 1.5
  3482.     end
  3483.     if ULTIstreak >= 350 then
  3484.       nextbet = ULTIbet * 2
  3485.     end
  3486.     if ULTIstreak >= 400 then
  3487.       if HUNTUltimateHigh4 then
  3488.         HUNTUltimateHigh4 = false
  3489.         ULTIMATEh = false
  3490.       end
  3491.       if HUNTUltimateLow4 then
  3492.         HUNTUltimateLow4 = false
  3493.         ULTIMATEl = false
  3494.       end
  3495.       ULTIstreak = -1
  3496.       losecount = 0
  3497.       HUNT = false
  3498.       nextbet = prebet
  3499.     end
  3500.  
  3501.  
  3502.     if HUNTUltimateHigh4 then
  3503.       name = " ULTIMATE HUNT HIGH 4"
  3504.       bethigh = true
  3505.     end
  3506.     if HUNTUltimateLow4 then
  3507.       name = " ULTIMATE HUNT LOW 4"
  3508.       bethigh = false
  3509.     end
  3510.   end
  3511.  
  3512.   ------------------------------------
  3513.  
  3514.   ------------ULTI3-HUNT----------------
  3515.  
  3516.   if (HUNTUltimateHigh3 or HUNTUltimateLow3) then
  3517.  
  3518.     chance = 0.0300
  3519.  
  3520.     if ULTIstreak == -1 then
  3521.       ULTIbet = (curbal / ULTIcalc)
  3522.       if ULTIbet < minbet * 2.2 then
  3523.         ULTIbet =  minbet * 2.2
  3524.       end
  3525.       ULTIstreak = 0
  3526.     end
  3527.  
  3528.     nextbet = ULTIbet
  3529.  
  3530.     if ULTIstreak >= 300 then
  3531.       nextbet = ULTIbet * 1.5
  3532.     end
  3533.     if ULTIstreak >= 350 then
  3534.       nextbet = ULTIbet * 2
  3535.     end
  3536.     if ULTIstreak >= 400 then
  3537.       if HUNTUltimateHigh3 then
  3538.         HUNTUltimateHigh3 = false
  3539.         ULTIMATEh = false
  3540.       end
  3541.       if HUNTUltimateLow3 then
  3542.         HUNTUltimateLow3 = false
  3543.         ULTIMATEl = false
  3544.       end
  3545.       ULTIstreak = -1
  3546.       losecount = 0
  3547.       HUNT = false
  3548.       nextbet = prebet
  3549.     end
  3550.  
  3551.  
  3552.     if HUNTUltimateHigh3 then
  3553.       name = " ULTIMATE HUNT HIGH 3"
  3554.       bethigh = true
  3555.     end
  3556.     if HUNTUltimateLow3 then
  3557.       name = " ULTIMATE HUNT LOW 3"
  3558.       bethigh = false
  3559.     end
  3560.   end
  3561.  
  3562.   ------------------------------------
  3563.  
  3564.   ------------ULTI2-HUNT----------------
  3565.  
  3566.   if (HUNTUltimateHigh2 or HUNTUltimateLow2) then
  3567.  
  3568.     chance = 0.0200
  3569.  
  3570.     if ULTIstreak == -1 then
  3571.       ULTIbet = (curbal / ULTIcalc)
  3572.       if ULTIbet < minbet * 2.2 then
  3573.         ULTIbet =  minbet * 2.2
  3574.       end
  3575.       ULTIstreak = 0
  3576.     end
  3577.  
  3578.     nextbet = ULTIbet
  3579.  
  3580.     if ULTIstreak >= 300 then
  3581.       nextbet = ULTIbet * 1.5
  3582.     end
  3583.     if ULTIstreak >= 350 then
  3584.       nextbet = ULTIbet * 2
  3585.     end
  3586.     if ULTIstreak >= 400 then
  3587.       if HUNTUltimateHigh2 then
  3588.         HUNTUltimateHigh2 = false
  3589.         ULTIMATEh = false
  3590.       end
  3591.       if HUNTUltimateLow2 then
  3592.         HUNTUltimateLow2 = false
  3593.         ULTIMATEl = false
  3594.       end
  3595.       ULTIstreak = -1
  3596.       losecount = 0
  3597.       HUNT = false
  3598.       nextbet = prebet
  3599.     end
  3600.  
  3601.  
  3602.     if HUNTUltimateHigh2 then
  3603.       name = " ULTIMATE HUNT HIGH 2"
  3604.       bethigh = true
  3605.     end
  3606.     if HUNTUltimateLow2 then
  3607.       name = " ULTIMATE HUNT LOW 2"
  3608.       bethigh = false
  3609.     end
  3610.   end
  3611.  
  3612.   ------------------------------------
  3613.  
  3614.   ------------ULTI1-HUNT----------------
  3615.  
  3616.   if (HUNTUltimateHigh1 or HUNTUltimateLow1) then
  3617.  
  3618.     chance = 0.0100
  3619.  
  3620.     if ULTIstreak == -1 then
  3621.       ULTIbet = (curbal / ULTIcalc)
  3622.       if ULTIbet < minbet * 2.2 then
  3623.         ULTIbet =  minbet * 2.2
  3624.       end
  3625.       ULTIstreak = 0
  3626.     end
  3627.  
  3628.     nextbet = ULTIbet
  3629.  
  3630.     if ULTIstreak >= 300 then
  3631.       nextbet = ULTIbet * 1.5
  3632.     end
  3633.     if ULTIstreak >= 350 then
  3634.       nextbet = ULTIbet * 2
  3635.     end
  3636.     if ULTIstreak >= 400 then
  3637.       if HUNTUltimateHigh1 then
  3638.         HUNTUltimateHigh1 = false
  3639.         ULTIMATEh = false
  3640.       end
  3641.       if HUNTUltimateLow1 then
  3642.         HUNTUltimateLow1 = false
  3643.         ULTIMATEl = false
  3644.       end
  3645.       ULTIstreak = -1
  3646.       losecount = 0
  3647.       HUNT = false
  3648.       nextbet = prebet
  3649.     end
  3650.  
  3651.  
  3652.     if HUNTUltimateHigh1 then
  3653.       name = " ULTIMATE HUNT HIGH 1"
  3654.       bethigh = true
  3655.     end
  3656.     if HUNTUltimateLow1 then
  3657.       name = " ULTIMATE HUNT LOW 1"
  3658.       bethigh = false
  3659.     end
  3660.   end
  3661.  
  3662.   ------------------------------------
  3663.  
  3664.  
  3665.  
  3666.   if HUNT and nextbet > maxbet then
  3667.     nextbet = maxbet
  3668.   end
  3669.  
  3670.   -------------Prints----------------
  3671.  
  3672.  
  3673.   chancecalc = chance
  3674.   if bethigh then
  3675.     name2 = "Payout - x" .. string.format("%3.0f",(99 / chancecalc)) .. " High  - " .. string.format("%3.2f",chancecalc) .. "% - >" .. string.format("%3.0f",9999 - (chancecalc * 100))
  3676.   else
  3677.     name2 = "Payout - x" .. string.format("%3.0f",(99 / chancecalc)) .. " Low   - " .. string.format("%3.2f",chancecalc) .. "% - <" .. string.format("%3.0f",(chancecalc * 100))
  3678.   end
  3679.  
  3680.  
  3681.   if stats == statsEvery then
  3682.     stats = 0
  3683.     print("....")
  3684.     print("....")
  3685.     print("....")
  3686.     print("....")
  3687.     print("....")
  3688.     print("....")
  3689.     print("....")
  3690.     print("....")
  3691.     print("....")
  3692.     print("....")
  3693.     print("....")
  3694.     print("....")
  3695.     print("....")
  3696.     print("....")
  3697.     print("....")
  3698.     print("....")
  3699.     print("....")
  3700.     print("....")
  3701.     print("....")
  3702.     print("....")
  3703.     print("-----------------------------------------------HIGH-----------------------------------------------")
  3704.     print("(" .. x100hCount .. ") 0.99% h = " .. string.format("%3.0f",x100h) .. "    of     " .. string.format("%3.0f",waiter100h ) .. "     - M = " .. HITx100h)
  3705.     print("....")
  3706.     print("(" .. x180hCount .. ") 0.55% h = " .. string.format("%3.0f",x180h) .. " - M = " .. HITx180h .. " | (" .. x240hCount .. ") 0.41% h = " .. string.format("%3.0f",x240h) .. " - M = " .. HITx240h)
  3707.     print("....")
  3708.     print("(" .. x330hCount .. ") 0.30% h = " .. string.format("%3.0f",x330h) .. "    of     " .. string.format("%3.0f",waiter330h ) .. " - M = " .. HITx330h)
  3709.     print("....")
  3710.     print("(" .. x500hCount .. ") 0.19% h = " .. string.format("%3.0f",x500h) .. "    of     " .. string.format("%3.0f",waiter500h ) .. "     - M = " .. HITx500h)
  3711.     print("....")
  3712.     print("(" .. x990hCount .. ") 0.10% h = " .. string.format("%3.0f",x990h) .. "    of     " .. string.format("%3.0f",waiter990h ) .. "     - M = " .. HITx990h)
  3713.     print("....")
  3714.     print("(" .. x1100hCount .. ") 0.09% h = " .. string.format("%3.0f",x1100h) .. " - M = " .. HITx1100h)
  3715.     print("....")
  3716.     print("(" .. x1650hCount .. ") 0.06% h = " .. string.format("%3.0f",x1650h) .. "  of     " .. string.format("%3.0f",waiter1650h ) .. "     - M = " .. HITx1650h)
  3717.     print("....")
  3718.     print("(" .. x2475hCount .. ") 0.04% h = " .. string.format("%3.0f",x2475h) .. " - M = " .. HITx2475h .. " |  (" .. x3300hCount .. ") 0.03% h = " .. string.format("%3.0f",x3300h) .. " - M = " .. HITx3300h)
  3719.     print("....")
  3720.     print("(" .. x4950hCount .. ") 0.02% h = " .. string.format("%3.0f",x4950h) .. " - M = " .. HITx4950h .. " | (" .. x9900hCount .. ") 0.01% h = " .. string.format("%3.0f",x9900h) .. " - M = " .. HITx9900h)
  3721.     print("-----------------------------------------------LOW------------------------------------------------")
  3722.     print("(" .. x100lCount .. ") 0.99% l = " .. string.format("%3.0f",x100l) .. "    of     " .. string.format("%3.0f",waiter100l) .. "     - M = " .. HITx100l)
  3723.     print("....")
  3724.     print("(" .. x180lCount .. ") 0.55% l = " .. string.format("%3.0f",x180l) .. " - M = " .. HITx180l .. " | (" .. x240lCount .. ") 0.41% l = " .. string.format("%3.0f",x240l) .. " - M = " .. HITx240l)
  3725.     print("....")
  3726.     print("(" .. x330lCount .. ") 0.30% l = " .. string.format("%3.0f",x330l) .. "    of     " .. string.format("%3.0f",waiter330l ) .. " - M = " .. HITx330l)
  3727.     print("....")
  3728.     print("(" .. x500lCount .. ") 0.19% l = " .. string.format("%3.0f",x500l) .. "    of     " .. string.format("%3.0f",waiter500l) .. "     - M = " .. HITx500l)
  3729.     print("....")
  3730.     print("(" .. x990lCount .. ") 0.10% l = " .. string.format("%3.0f",x990l) .. "    of     " .. string.format("%3.0f",waiter990l) .. "     - M = " .. HITx990l)
  3731.     print("....")
  3732.     print("(" .. x1100lCount .. ") 0.09% l = " .. string.format("%3.0f",x1100l) .. " - M = " .. HITx1100l)
  3733.     print("....")
  3734.     print("(" .. x1650lCount .. ") 0.06% l = " .. string.format("%3.0f",x1650l) .. "  of     " .. string.format("%3.0f",waiter1650l ) .. "     - M = " .. HITx1650l)
  3735.     print("....")
  3736.     print("(" .. x2475lCount .. ") 0.04% l = " .. string.format("%3.0f",x2475l) .. " - M = " .. HITx2475l .. " | (" .. x3300lCount .. ") 0.03% l = " .. string.format("%3.0f",x3300l) .. " - M = " .. HITx3300l)
  3737.     print("....")
  3738.     print("(" .. x4950lCount .. ") 0.02% l = " .. string.format("%3.0f",x4950l) .. " - M = " .. HITx4950l .. " | (" .. x9900lCount .. ") 0.01% l = " .. string.format("%3.0f",x9900l) .. " - M = " .. HITx9900l)
  3739.     print("----------------------------------------------------------------------------------------------------")
  3740.     print("HiRolls = " .. highCount .. " | LoRolls = " .. lowCount .. " || HiMiss = " .. missedHigh .. " | LowMiss = " .. missedLow )
  3741.     print("----------------------------------------------------------------------------------------------------")
  3742.     if HUNT then
  3743.       print("Huntbet = " .. string.format("%3.8f",nextbet) .. " | Maxbet = " .. string.format("%3.8f",maxbet))
  3744.     else
  3745.       print("Huntbet = " .. string.format("%3.8f",huntbet) .. " | Maxbet = " .. string.format("%3.8f",maxbet))
  3746.     end
  3747.  
  3748.     print("----------------------------------------------------------------------------------------------------")
  3749.     print(name .. "|| " .. name3 .. " || TR = " .. trigger)
  3750.     --print("....")
  3751.     print(name2)
  3752.     print("----------------------------------------------------------------------------------------------------")
  3753.     if HUNT then
  3754.       if HUNTx100h or HUNTx100l then
  3755.         print("HuntStreak = " .. huntstreak100 .. "  ||  LoseStreak = " .. losecount)
  3756.       end
  3757.       if HUNTx330h or HUNTx330l then
  3758.         print("HuntStreak = " .. huntstreak330 .. "  ||  LoseStreak = " .. losecount)
  3759.       end
  3760.       if HUNTx400h or HUNTx400l then
  3761.         print("HuntStreak = " .. huntstreak400 .. "  ||  LoseStreak = " .. losecount)
  3762.       end
  3763.       if HUNTx990 then
  3764.         print("x990Streak = " .. x990streak .. "  ||  LoseStreak = " .. losecount ..  "  || x990Try = " .. x990try)
  3765.       end
  3766.       if HUNTLucky then
  3767.         print("LUCKYstreak = " .. LUCKYstreak .. "  ||  LoseStreak = " .. losecount)
  3768.       end
  3769.       if HUNTUltimateHigh1 or HUNTUltimateLow1 or HUNTUltimateHigh2 or HUNTUltimateLow2 or HUNTUltimateHigh3 or HUNTUltimateLow3 or HUNTUltimateHigh4 or HUNTUltimateLow4  then
  3770.         print("ULTIMATE Streak = " .. ULTIstreak .. "  ||  LoseStreak = " .. losecount)
  3771.       end
  3772.     end
  3773.     print("----------------------------------------------------------------------------------------------------")
  3774.  
  3775.     if ULTIMATEh and ULTIMATEl then
  3776.       print("ULTIHigh1 = " .. string.format("%3.0f",ULTIHigh1) .. "  of  " .. string.format("%3.0f",ULTIWait1) .. "  ||  ULTILow1 = " .. string.format("%3.0f",ULTILow1) .. "  of  " .. string.format("%3.0f",ULTIWait1))
  3777.       print("ULTIHigh2 = " .. string.format("%3.0f",ULTIHigh2) .. "  of  " .. string.format("%3.0f",ULTIWait2) .. "  ||  ULTILow2 = " .. string.format("%3.0f",ULTILow2) .. "  of  " .. string.format("%3.0f",ULTIWait2))
  3778.     else
  3779.       if ULTIMATEh and not ULTIMATEl then
  3780.         print("ULTIHigh1 = " .. string.format("%3.0f",ULTIHigh1) .. "  of  " .. string.format("%3.0f",ULTIWait1) .. "  ||  ULTILow1 - USED")
  3781.         print("ULTIHigh2 = " .. string.format("%3.0f",ULTIHigh2) .. "  of  " .. string.format("%3.0f",ULTIWait2) .. "  ||  ULTILow2 - USED")
  3782.       else
  3783.         if not ULTIMATEh and ULTIMATEl then
  3784.           print("ULTIHigh1 - USED  ||  ULTILow1 = " .. string.format("%3.0f",ULTILow1) .. "  of  " .. string.format("%3.0f",ULTIWait1))
  3785.           print("ULTIHigh2 - USED  ||  ULTILow2 = " .. string.format("%3.0f",ULTILow2) .. "  of  " .. string.format("%3.0f",ULTIWait2))
  3786.         else
  3787.           if not ULTIMATEh and not ULTIMATEl then
  3788.             print("ULTIHigh1 - USED  ||  ULTILow1 - USED")
  3789.             print("ULTIHigh2 - USED  ||  ULTILow2 - USED")
  3790.           end
  3791.         end
  3792.       end
  3793.     end
  3794.  
  3795.     if ULTIMATEh and ULTIMATEl then
  3796.       print("ULTIHigh3 = " .. string.format("%3.0f",ULTIHigh3) .. "  of  " .. string.format("%3.0f",ULTIWait3) .. "  ||  ULTILow3 = " .. string.format("%3.0f",ULTILow3) .. "  of  " .. string.format("%3.0f",ULTIWait3))
  3797.       print("ULTIHigh4 = " .. string.format("%3.0f",ULTIHigh4) .. "  of  " .. string.format("%3.0f",ULTIWait4) .. "  ||  ULTILow4 = " .. string.format("%3.0f",ULTILow4) .. "  of  " .. string.format("%3.0f",ULTIWait4))
  3798.     else
  3799.       if ULTIMATEh and not ULTIMATEl then
  3800.         print("ULTIHigh3 = " .. string.format("%3.0f",ULTIHigh3) .. "  of  " .. string.format("%3.0f",ULTIWait3) .. "  ||  ULTILow3 - USED")
  3801.         print("ULTIHigh4 = " .. string.format("%3.0f",ULTIHigh4) .. "  of  " .. string.format("%3.0f",ULTIWait4) .. "  ||  ULTILow4 - USED")
  3802.       else
  3803.         if not ULTIMATEh and ULTIMATEl then
  3804.           print("ULTIHigh3 - USED  ||  ULTILow3 = " .. string.format("%3.0f",ULTILow3) .. "  of  " .. string.format("%3.0f",ULTIWait3))
  3805.           print("ULTIHigh4 - USED  ||  ULTILow4 = " .. string.format("%3.0f",ULTILow4) .. "  of  " .. string.format("%3.0f",ULTIWait4))
  3806.         else
  3807.           if not ULTIMATEh and not ULTIMATEl then
  3808.             print("ULTIHigh3 - USED  ||  ULTILow3 - USED")
  3809.             print("ULTIHigh4 - USED  ||  ULTILow4 - USED")
  3810.           end
  3811.         end
  3812.       end
  3813.     end
  3814.  
  3815.  
  3816.  
  3817.     print("----------------------------------------------------------------------------------------------------")
  3818.     if yoloHunts then
  3819.       print("YOLO Wins = " .. YOLOWins .. "  Loses = " .. YOLOloses .. "  YOLOed = " .. string.format("%3.8f",YOLOed))
  3820.     end
  3821.     if luckyHunts then
  3822.       print("LUCKY Wins = " .. LUCKYWins .. "  Loses = " .. LUCKYLoses .. "  LUCKYed = " .. string.format("%3.8f",LUCKYed))
  3823.     end
  3824.     if yoloHunts or luckyHunts then
  3825.       print("----------------------------------------------------------------------------------------------------")
  3826.     end
  3827.     if prefSideHigh then
  3828.       print("PREF HI || FacHi = " .. string.format("%3.2f",factorHigh) .. " || FacLo = " .. string.format("%3.2f",factorLow) .. " || GoHi = " .. string.format("%3.0f",goHigh) .. " || GoLo = " .. string.format("%3.0f",goLow))
  3829.     else
  3830.       print("PREF LO || FacHi = " .. string.format("%3.2f",factorHigh) .. " || FacLo = " .. string.format("%3.2f",factorLow) .. " || GoHi = " .. string.format("%3.0f",goHigh) .. " || GoLo = " .. string.format("%3.0f",goLow))
  3831.     end
  3832.     print("----------------------------------------------------------------------------------------------------")
  3833.     print("B P H = " .. string.format("%3.4f",hip) .. " R = " .. highest .. " C = " .. string.format("%3.2f",hic) .. "% ID: " .. hiid)
  3834.     print("B P H = " .. string.format("%3.4f",lop) .. " R = " .. lowest .. " C = " .. string.format("%3.2f",loc) .. "% ID: " .. loid)
  3835.     print("----------------------------------------------------------------------------------------------------")
  3836.     print("Total Bets = " .. betcount .. "  Target Balance = " .. targetb .. "  Reached = " .. string.format("%3.2f",targetpercent) .. "%")
  3837.     print("----------------------------------------------------------------------------------------------------")
  3838.     -----------------------------------
  3839.  
  3840.     if (win and stopOnWin) or stopSave then
  3841.       print("x100h = " .. x100h)
  3842.       print("x180h = " .. x180h)
  3843.       print("x240h = " .. x240h)
  3844.       print("x330h = " .. x330h)
  3845.       print("x400h = " .. x400h)
  3846.       print("x500h = " .. x500h)
  3847.       print("x600h = " .. x600h)
  3848.       print("x825h = " .. x825h)
  3849.       print("x990h = " .. x990h)
  3850.       print("x1100h = " .. x1100h)
  3851.       print("x1650h = " .. x1650h)
  3852.       print("x2475h = " .. x2475h)
  3853.       print("x3300h = " .. x3300h)
  3854.       print("x4950h = " .. x4950h)
  3855.       print("x9900h = " .. x9900h)
  3856.       print("HITx100h = " .. HITx100h)
  3857.       print("HITx180h = " .. HITx180h)
  3858.       print("HITx240h = " .. HITx240h)
  3859.       print("HITx330h = " .. HITx330h)
  3860.       print("HITx400h = " .. HITx400h)
  3861.       print("HITx500h = " .. HITx500h)
  3862.       print("HITx600h = " .. HITx600h)
  3863.       print("HITx825h = " .. HITx825h)
  3864.       print("HITx990h = " .. HITx990h)
  3865.       print("HITx1100h = " .. HITx1100h)
  3866.       print("HITx1650h = " .. HITx1650h)
  3867.       print("HITx2475h = " .. HITx2475h)
  3868.       print("HITx3300h = " .. HITx3300h)
  3869.       print("HITx4950h = " .. HITx4950h)
  3870.       print("HITx9900h = " .. HITx9900h)
  3871.       print("x100hCount = " .. x100hCount)
  3872.       print("x180hCount = " .. x180hCount)
  3873.       print("x240hCount = " .. x240hCount)
  3874.       print("x330hCount = " .. x330hCount)
  3875.       print("x400hCount = " .. x400hCount)
  3876.       print("x500hCount = " .. x500hCount)
  3877.       print("x600hCount = " .. x600hCount)
  3878.       print("x825hCount = " .. x825hCount)
  3879.       print("x990hCount = " .. x990hCount)
  3880.       print("x1100hCount = " .. x1100hCount)
  3881.       print("x1650hCount = " .. x1650hCount)
  3882.       print("x2475hCount = " .. x2475hCount)
  3883.       print("x3300hCount = " .. x3300hCount)
  3884.       print("x4950hCount = " .. x4950hCount)
  3885.       print("x9900hCount = " .. x9900hCount)
  3886.       print("x100l = " .. x100l)
  3887.       print("x180l = " .. x180l)
  3888.       print("x240l = " .. x240l)
  3889.       print("x330l = " .. x330l)
  3890.       print("x400l = " .. x400l)
  3891.       print("x500l = " .. x500l)
  3892.       print("x600l = " .. x600l)
  3893.       print("x825l = " .. x825l)
  3894.       print("x990l = " .. x990l)
  3895.       print("x1100l = " .. x1100l)
  3896.       print("x1650l = " .. x1650l)
  3897.       print("x2475l = " .. x2475l)
  3898.       print("x3300l = " .. x3300l)
  3899.       print("x4950l = " .. x4950l)
  3900.       print("x9900l = " .. x9900l)
  3901.       print("HITx100l = " .. HITx100l)
  3902.       print("HITx180l = " .. HITx180l)
  3903.       print("HITx240l = " .. HITx240l)
  3904.       print("HITx330l = " .. HITx330l)
  3905.       print("HITx400l = " .. HITx400l)
  3906.       print("HITx500l = " .. HITx500l)
  3907.       print("HITx600l = " .. HITx600l)
  3908.       print("HITx825l = " .. HITx825l)
  3909.       print("HITx990l = " .. HITx990l)
  3910.       print("HITx1100l = " .. HITx1100l)
  3911.       print("HITx1650l = " .. HITx1650l)
  3912.       print("HITx2475l = " .. HITx2475l)
  3913.       print("HITx3300l = " .. HITx3300l)
  3914.       print("HITx4950l = " .. HITx4950l)
  3915.       print("HITx9900l = " .. HITx9900l)
  3916.       print("x100lCount = " .. x100lCount)
  3917.       print("x180lCount = " .. x180lCount)
  3918.       print("x240lCount = " .. x240lCount)
  3919.       print("x330lCount = " .. x330lCount)
  3920.       print("x400lCount = " .. x400lCount)
  3921.       print("x500lCount = " .. x500lCount)
  3922.       print("x600lCount = " .. x600lCount)
  3923.       print("x825lCount = " .. x825lCount)
  3924.       print("x990lCount = " .. x990lCount)
  3925.       print("x1100lCount = " .. x1100lCount)
  3926.       print("x1650lCount = " .. x1650lCount)
  3927.       print("x2475lCount = " .. x2475lCount)
  3928.       print("x3300lCount = " .. x3300lCount)
  3929.       print("x4950lCount = " .. x4950lCount)
  3930.       print("x9900lCount = " .. x9900lCount)
  3931.       print("missedHigh = " .. missedHigh)
  3932.       print("missedLow = " .. missedLow)
  3933.       if ULTIMATEh then
  3934.         print("ULTIMATEh = true")
  3935.       else
  3936.         print("ULTIMATEh = false")
  3937.       end
  3938.       if ULTIMATEl then
  3939.         print("ULTIMATEl = true")
  3940.       else
  3941.         print("ULTIMATEl = false")
  3942.       end
  3943.       stop()
  3944.     end
  3945.  
  3946.   end
  3947. end
  3948. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement