Advertisement
Keiich

Fast_10%_for_Luv

Sep 2nd, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.43 KB | None | 0 0
  1. --@ Fast_10%_for_Luv
  2.  
  3.  
  4. ------------------------------------
  5. base = 0.00000010 --@ Put min bet.
  6.  
  7. targetb = 0.0025 --@ Put target balance.
  8.  
  9. winseedreset = false --@ set True for resetting seed after each win
  10.  
  11. sound = true --@ set False to remove the sound on win
  12. -----------------------------------
  13.  
  14.  
  15.  
  16.  
  17. ----------------
  18. prebet = base
  19. nextbet = prebet
  20. losecount = 0
  21. betcount = 0
  22. basechance = 10
  23. chance = basechance
  24. bethigh = true
  25. startbal = balance
  26. curbal = balance
  27. maxlstreak = 0
  28. largebet = 0.00000000
  29. curbal = balance
  30. targetpercent = curbal / targetb * 100
  31. lastwinR = 0
  32. lastwinP = 0
  33. lastwinS = 0
  34. poMissedT = 0
  35. poMissedH1 = 0
  36. poMissedH2 = 0
  37. poMissedH3 = 0
  38. poMissedL1 = 0
  39. poMissedL2 = 0
  40. poMissedL3 = 0
  41. poMissedHID1 = 0.00
  42. poMissedHID2 = 0.00
  43. poMissedHID3 = 0.00
  44. poMissedLID1 = 0.00
  45. poMissedLID2 = 0.00
  46. poMissedLID3 = 0.00
  47. LBR = 0
  48. LBID = 0.00
  49. ----------------
  50.  
  51.  
  52. function dobet()
  53.  
  54.   chance = basechance
  55.  
  56.   LBR = lastBet.Roll
  57.   LBID = lastBet.Id
  58.   if LBR >= 99.9 then
  59.     poMissedT += 1
  60.     if LBR > poMissedH1 then
  61.       poMissedH3 = poMissedH2
  62.       poMissedHID3 = poMissedHID2
  63.       poMissedH2 = poMissedH1
  64.       poMissedHID2 = poMissedHID1
  65.       poMissedH1 = LBR
  66.       poMissedHID1  = LBID
  67.     else
  68.       if LBR > poMissedH2 then
  69.         poMissedH3 = poMissedH2
  70.         poMissedHID3 = poMissedHI2
  71.         poMissedH2 = LBR
  72.         poMissedHID2  = LBID
  73.       else
  74.         if LBR > poMissedH3 then
  75.           poMissedH3 = LBR
  76.           poMissedHID3 = LBID
  77.         end
  78.       end
  79.     end
  80.   end
  81.  
  82.   if LBR <= 0.10 then
  83.     poMissedT += 1
  84.     if (poMissedL1 == 0 or LBR < poMissedL1) then
  85.       poMissedL3 = poMissedL2
  86.       poMissedLID3 = poMissedLID2
  87.       poMissedL2 = poMissedL1
  88.       poMissedLID2 = poMissedLID1
  89.       poMissedL1 = LBR
  90.       poMissedLID1  = LBID
  91.     else
  92.       if (poMissedL2 == 0 or LBR < poMissedL2) then
  93.         poMissedL3 = poMissedL2
  94.         poMissedLID3 = poMissedLI2
  95.         poMissedL2 = LBR
  96.         poMissedLID2  = LBID
  97.       else
  98.         if (poMissedL3 == 0 or LBR < poMissedL3) then
  99.           poMissedL3 = LBR
  100.           poMissedLID3  = LBID
  101.         end
  102.       end
  103.     end
  104.   end
  105.  
  106.  
  107.  
  108.  
  109.  
  110.   curbal = balance
  111.   targetpercent = curbal / targetb * 100
  112.   print("\n---------")
  113.   print("---------")
  114.   print("---------")
  115.   print("---------")
  116.   print("---------\n")
  117.   print("\nBig Payouts Missed = " .. poMissedT)
  118.   print("\n3 Best High Rolls = " .. poMissedH1 .. ", " .. poMissedH2 .. ", " .. poMissedH3)
  119.   print("\n3 Best High IDs:")
  120.   print(poMissedHID1)
  121.   print(poMissedHID2)
  122.   print(poMissedHID3)
  123.   print("\n3 Best Low  Rolls = " .. poMissedL1 .. ", " .. poMissedL2 .. ", " .. poMissedL3)
  124.   print("\n3 Best Low IDs:")
  125.   print(poMissedLID1)
  126.   print(poMissedLID2)
  127.   print(poMissedLID3)
  128.   print("\n---------")
  129.   print("---------")
  130.   print("---------")
  131.   print("---------")
  132.   print("---------")
  133.   print("---------")
  134.   print("---------\n")
  135.   print("Roll number - " .. betcount)
  136.   print("\n---------")
  137.   print("\nLoseStreak - " .. losecount)
  138.   print("\n---------")
  139.   print("---------")
  140.   print("---------\n")
  141.   print("Target Balance - " .. targetb)
  142.   print("% of Target Reached - " .. string.format("%3.2f",targetpercent) .. "%")
  143.   print("\n---------\n")
  144.   print("Longest LoseStreak - " .. maxlstreak)
  145.   print("Largest Profit from 1 bet - " .. string.format("%3.8f",largebet))
  146.   print("\n---------\n")
  147.   print("\n---------\n")
  148.   print("Last Won Bet - Roll / Profit / Losestreak: ")
  149.   print(lastwinR .. " / " .. string.format("%3.8f",lastwinP) .. " / " .. lastwinS)
  150.   print("\n---------\n")
  151. --------------------------------------------------------------------------
  152.  
  153.  
  154.  
  155.   if win then
  156.     if sound then
  157.     ching()
  158.     end
  159.     nextbet = prebet
  160.     lastwinR = lastBet.Roll
  161.     lastwinP = lastBet.Profit
  162.     lastwinS = losecount
  163.     if lastBet.Profit > largebet then
  164.       largebet = lastBet.Profit
  165.     end
  166.     losecount = 0
  167.     betcount += 1
  168.     if winseedreset then
  169.     resetseed()
  170.     end
  171.     curbal = balance
  172.     if curbal >= targetb then
  173.       print("\nTARGET REACHED. GRATS")
  174.       stop()
  175.     end
  176.   else
  177.     losecount += 1
  178.     if losecount > maxlstreak then
  179.       maxlstreak = losecount
  180.     end
  181.     betcount += 1
  182.     nextbet = prebet
  183.   end
  184.  
  185.   if (losecount > 30) then
  186.     nextbet = base * 6
  187.   end
  188.   if (losecount > 40) then
  189.     nextbet = base * 18
  190.   end
  191.   if (losecount > 41) then
  192.     nextbet = previousbet * 1.12
  193.   end
  194. end
  195. end
  196. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement