Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ------------------------------------
- base = 0.00004444 --@ Put min bet.
- targetb = 1.0025 --@ Put target balance.
- basechance = 30
- winseedreset = false --@ set True for resetting seed after each win
- sound = true --@ set False to remove the sound on win
- -----------------------------------
- ----------------
- prebet = base
- nextbet = prebet
- losecount = 0
- betcount = 0
- bethigh = true
- startbal = balance
- curbal = balance
- maxlstreak = 0
- largebet = 0.00000000
- curbal = balance
- targetpercent = curbal / targetb * 100
- poMissedT = 0
- poMissedH1 = 0
- poMissedH2 = 0
- poMissedH3 = 0
- poMissedL1 = 0
- poMissedL2 = 0
- poMissedL3 = 0
- poMissedHID1 = 0.00
- poMissedHID2 = 0.00
- poMissedHID3 = 0.00
- poMissedLID1 = 0.00
- poMissedLID2 = 0.00
- poMissedLID3 = 0.00
- LBR = 0
- LBID = 0.00
- LBC = 0
- largebetR = 0
- largebetC = 0
- largebetID = 0
- ----------------
- function dobet()
- LBC = lastBet.Chance
- if win then
- if (sound and LBC <= 1) then
- ching()
- end
- chance = basechance
- if lastBet.Profit > largebet then
- largebet = lastBet.Profit
- largebetR = lastBet.Roll
- largebetC = lastBet.Chance
- largebetID = lastBet.Id
- end
- losecount = 0
- betcount += 1
- if winseedreset then
- resetseed()
- end
- curbal = balance
- if curbal >= targetb then
- print("\nTARGET REACHED. GRATS")
- stop()
- end
- else
- losecount += 1
- if losecount > maxlstreak then
- maxlstreak = losecount
- end
- betcount += 1
- end
- nextbet = prebet
- if losecount >= 1 then
- chance = 25
- end
- if losecount >= 2 then
- chance = 20
- end
- if losecount >= 3 then
- chance = 18
- end
- if losecount >= 4 then
- chance = 14
- end
- if losecount >= 5 then
- chance = 11
- end
- if losecount >= 6 then
- chance = 8
- end
- if losecount >= 8 then
- chance = 5
- end
- if losecount >= 14 then
- chance = 3
- end
- if losecount >= 20 then
- chance = 2
- end
- if losecount >= 27 then
- chance = 1.5
- end
- if losecount >= 38 then
- chance = 1
- end
- if losecount >= 47 then
- chance = 0.77
- end
- if losecount >= 71 then
- chance = 0.55
- end
- if losecount >= 95 then
- chance = 0.42
- end
- if losecount >= 120 then
- chance = 0.33
- end
- if losecount >= 150 then
- chance = 0.27
- end
- if losecount >= 180 then
- chance = 0.22
- end
- if losecount >= 210 then
- chance = 0.19
- end
- if losecount >= 250 then
- chance = 0.16
- end
- if losecount >= 290 then
- chance = 0.14
- end
- if losecount >= 330 then
- chance = 0.11
- end
- if losecount >= 360 then
- chance = 0.10
- end
- if losecount >= 390 then
- chance = 0.09
- end
- if losecount >= 420 then
- chance = 0.08
- end
- if losecount >= 450 then
- chance = 0.07
- end
- if losecount >= 480 then
- chance = 0.06
- end
- if losecount >= 510 then
- chance = 0.05
- end
- if losecount >= 540 then
- chance = 0.04
- end
- if losecount >= 570 then
- chance = 0.03
- end
- if losecount >= 600 then
- chance = 0.02
- end
- if losecount >= 630 then
- chance = 0.01
- end
- if losecount >= 660 then
- chance = basechance
- losecount = 0
- end
- if not win then
- LBR = lastBet.Roll
- LBID = lastBet.Id
- if LBR >= 99.9 then
- poMissedT += 1
- if LBR > poMissedH1 then
- poMissedH3 = poMissedH2
- poMissedHID3 = poMissedHID2
- poMissedH2 = poMissedH1
- poMissedHID2 = poMissedHID1
- poMissedH1 = LBR
- poMissedHID1 = LBID
- else
- if LBR > poMissedH2 then
- poMissedH3 = poMissedH2
- poMissedHID3 = poMissedHI2
- poMissedH2 = LBR
- poMissedHID2 = LBID
- else
- if LBR > poMissedH3 then
- poMissedH3 = LBR
- poMissedHID3 = LBID
- end
- end
- end
- end
- if LBR <= 0.10 then
- poMissedT += 1
- if (poMissedL1 == 0 or LBR < poMissedL1) then
- poMissedL3 = poMissedL2
- poMissedLID3 = poMissedLID2
- poMissedL2 = poMissedL1
- poMissedLID2 = poMissedLID1
- poMissedL1 = LBR
- poMissedLID1 = LBID
- else
- if (poMissedL2 == 0 or LBR < poMissedL2) then
- poMissedL3 = poMissedL2
- poMissedLID3 = poMissedLI2
- poMissedL2 = LBR
- poMissedLID2 = LBID
- else
- if (poMissedL3 == 0 or LBR < poMissedL3) then
- poMissedL3 = LBR
- poMissedLID3 = LBID
- end
- end
- end
- end
- end
- curbal = balance
- targetpercent = curbal / targetb * 100
- print("\n---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------")
- print("---------\n")
- print("\nBig Payouts Missed = " .. poMissedT)
- print("\n3 Best High Rolls = " .. poMissedH1 .. ", " .. poMissedH2 .. ", " .. poMissedH3)
- print("\n3 Best High IDs:")
- print(poMissedHID1)
- print(poMissedHID2)
- print(poMissedHID3)
- print("\n3 Best Low Rolls = " .. poMissedL1 .. ", " .. poMissedL2 .. ", " .. poMissedL3)
- print("\n3 Best Low IDs:")
- print(poMissedLID1)
- print(poMissedLID2)
- print(poMissedLID3)
- print("\n---------")
- print("---------")
- print("---------")
- print("---------\n")
- print("Roll number = " .. betcount)
- print("\n---------")
- print("\nLoseStreak = " .. losecount)
- print("\n---------")
- print("---------")
- print("---------\n")
- print("Target Balance = " .. targetb)
- print("% of Target Reached = " .. string.format("%3.2f",targetpercent) .. "%")
- print("\n---------\n")
- print("Longest LoseStreak = " .. maxlstreak)
- print("\nLargest Bet Profit = " .. string.format("%3.8f",largebet))
- print("\nLargest Bet Roll = " .. string.format("%3.2f",largebetR))
- print("\nLargest Bet Chance = " .. string.format("%3.2f",largebetC))
- print("\nLargest Bet ID:")
- print(largebetID)
- print("\n---------\n")
- print("\n---------\n")
- print("\n---------\n")
- --------------------------------------------------------------------------
- end
Advertisement
Add Comment
Please, Sign In to add comment