-
Content Count
114 -
Joined
-
Last visited
-
Days Won
1
Reputation Activity
-
ombrerico reacted to Serlite in [$800] PD Weekly Heroes Wk24
66.66
115476838988
This was a bit of a challenge without Seuntjie's dicebot! But luckily, I was able to whip up a bit of JavaScript that should allow people to continue programming bets from the browser. Not as neat is Seuntjie's dicebot, but at least it works!
If you'd like to use it, read through the code carefully! It's good practice to make sure nobody sneaks in an auto-withdrawal script and robs you. You'll need to use this in the console of your browser (usually F12) after you've signed into Primedice:
// ========================================== // Copy from here... let stopContinousBetting = false; function placeBet(rollUntilStop, betVariables){ let token = localStorage["session"].replaceAll("\"", ""); let query = { "operationName":"PrimediceRoll", "variables": betVariables, "query":"mutation PrimediceRoll($amount: Float!, $target: Float!, $condition: CasinoGamePrimediceConditionEnum!, $currency: CurrencyEnum!) {\n primediceRoll(amount: $amount, target: $target, condition: $condition, currency: $currency) {\n ...CasinoBetFragment\n state {\n ...PrimediceStateFragment\n __typename\n }\n __typename\n }\n}\n\nfragment CasinoBetFragment on CasinoBet {\n id\n active\n payoutMultiplier\n amountMultiplier\n amount\n payout\n updatedAt\n currency\n game\n user {\n id\n name\n __typename\n }\n __typename\n}\n\nfragment PrimediceStateFragment on CasinoGamePrimedice {\n result\n target\n condition\n __typename\n}\n" }; fetch("https://primedice.com/_api/graphql", { method: "POST", headers: { "x-access-token": token, "x-language": "en", "x-lockdown-token": "", "content-type": "application/json", "content-length": query.length }, body: JSON.stringify(query) }).then(response => { if (response.ok){ return response.json(); } else{ console.log("Request failed!", response); } }).then((jsonBody) => { if (jsonBody.data.primediceRoll){ let roll = jsonBody.data.primediceRoll; let condition = roll.state.condition; let target = roll.state.target; let rollNumber = +roll.state.result.toFixed(2); let won = condition === "above" ? rollNumber > target : rollNumber < target; console.log ( won ? "Win" : "Loss", rollNumber); if (rollUntilStop && !shouldStopBetting(won, rollNumber)){ placeBet(rollUntilStop, betVariables); } } else{ console.log("No roll returned!", jsonBody); } }); } function shouldStopBetting(won, rollNumber){ if (stopContinousBetting){ console.log("Betting manually stopped!"); stopContinousBetting = false; return true; } let winningNumbers = [33.33, 44.44, 55.55, 66.66, 77.77]; if (won && (winningNumbers.includes(rollNumber))) { console.log("Stop condition met!"); return true; } return false; } function stopBetting(){ stopContinousBetting = true; } // ...To here. // ========================================== // Run this only after you've input the exact bet parameters you want placeBet( true, { "currency":"ltc", "amount":0.0005775, "target":1.99, "condition":"above" }); // Run this if you want to interrupt betting stopBetting();
-
ombrerico got a reaction from Darki223 in [$800] The Greatest Minds: Mark Zuckerberg
Bet: 104,256,833,939
placed by ombrerico on 17/01/2022
Wagered
0.23752000 Multiplier
11.00x Profit
2.37520000 93.71
-
ombrerico got a reaction from Jasdin in [$800] The Greatest Minds: Mark Zuckerberg
Bet: 104,256,833,939
placed by ombrerico on 17/01/2022
Wagered
0.23752000 Multiplier
11.00x Profit
2.37520000 93.71
-
ombrerico got a reaction from WildMachines in [$800] The Greatest Minds: Mark Zuckerberg
Bet: 104,256,833,939
placed by ombrerico on 17/01/2022
Wagered
0.23752000 Multiplier
11.00x Profit
2.37520000 93.71
-
ombrerico got a reaction from Smurf123 in 🔢 [$800] The Greatest Minds: Bertrand Russell 🔢
Bet: 92,035,827,215
placed by ombrerico on 18/06/2021
Wagered
0.45000000 Multiplier
9.00x Profit
3.60000000
Bet: 92,035,828,392
placed by ombrerico on 18/06/2021
Wagered
0.45000000 Multiplier
8.00x Profit
3.15145350
-
ombrerico reacted to Serlite in 🔢 [$800] The Greatest Minds: Bertrand Russell 🔢
Bet: 91,987,679,189
placed by Serlite on 17/06/2021
Wagered
0.00018114 Multiplier
9.00x Profit
0.00144912 Bet: 91,987,744,422
placed by Serlite on 17/06/2021
Wagered
0.00018114 Multiplier
8.00x Profit
0.00126857 This was an interesting challenge - different multipliers, limited bets to hit both...unfortunately, I didn't write a fully automated script for this one. So basically, you'll have to run two scripts back-to-back. Run the first script until it hit, then run the second...and if it hits, you're done! If it doesn't, start back at the first script and try again.
If you do use this script, don't forget to create a file called "slow.txt" in the dicebot folder! Otherwise you won't get back the numerical bet IDs that the script needs to check.
Part 1:
chance = 11 nextbet = 0.00018114 bethigh = true currency = "Ltc" function dobet() local betIdString = tostring(lastBet.Id) local betIdEnd = string.sub(betIdString, -1) if win and tonumber(betIdEnd) % 2 == 1 then print(lastBet.Roll) print(lastBet.Id) ching() stop() end end Part 2:
nextbet = 0.00018114 bethigh = true currency = "Ltc" betCount = 1 maxBets = 10 function dobet() local betIdString = tostring(lastBet.Id) local betIdEnd = string.sub(betIdString, -1) if win and tonumber(betIdEnd) % 2 == 0 then print(lastBet.Roll) print(lastBet.Id) ching() stop() end if betCount >= maxBets then stop() else betCount += 1 end end
-
ombrerico reacted to Serlite in ⚡ [$800] The Greatest Minds: Michael Faraday ⚡
Bet: 90,694,861,363
placed by Serlite on 24/05/2021
Wagered
0.00018267 Multiplier
39.92x Profit
0.00710940 Bet: 90,694,861,602
placed by Serlite on 24/05/2021
Wagered
0.00018267 Multiplier
8.00x Profit
0.00127810 Pretty straightforward challenge, though it can be cumbersome if you don't have a script. So here's the one I wrote!
Note how there's no logic in there to hunt for the specific bet ID digits - that's because the most efficient way to do this challenge is to only bet when you know there will be a "48" in the bet ID. You can guarantee that by waiting until a "48" occurs in a high enough digit that it won't change for a while, then start betting. Remember to stop betting before those digits change, and wait for your next chance.
nextbet = 0.00018267 bethigh = true currency = "Ltc" local multipliersToHunt = {40, 8} local winStreak = 0 function dobet() if win then local multiplier = convertToMultiplier(chance) print ("Hit for " .. multiplier .. "x multiplier!") if winStreak + 1 == #multipliersToHunt then ching() stop() else winStreak += 1 chance = getChance() print ("Continuing hunt to " .. multipliersToHunt[winStreak + 1] .. "x multiplier.") end else winStreak = 0 chance = getChance() end end function getChance() return convertToWinChance(multipliersToHunt[winStreak + 1]) end function convertToWinChance(multiplier) return round(99 / multiplier, 2) end function convertToMultiplier(winChance) return 99 / winChance end function round(x, decimalPlaces) local mult = 10^(decimalPlaces or 0) return math.floor(x * mult + 0.5) / mult end chance = getChance()
-
ombrerico reacted to Serlite in 🔨[$800] The Greatest Minds: Michelangelo 🎨
Bet: 89,631,773,106
placed by Serlite on 04/05/2021
Wagered
0.00009573 Multiplier
12.00x Profit
0.00105303 Bet: 89,631,852,540
placed by Serlite on 04/05/2021
Wagered
0.00009573 Multiplier
21.02x Profit
0.00191643 This was an interesting one to hunt this week - nothing to special about the multipliers, but the bet ID requirements were interesting to script!
For this script, remember to have "slow.txt" in your dicebot folder so the numerical bet ID will be retrieved. And don't forget to update the win chance for the appropriate multiplier!
chance = 8.2500 nextbet = 0.00009573 bethigh = false currency = "Ltc" local digitsToCheck = 2 function dobet() local betIdString = tostring(lastBet.Id) if win and areEndDigitsEven(betIdString, digitsToCheck) then print(lastBet.Id) ching() stop() end end function areEndDigitsEven(input, count) for i = 0, count - 1, 1 do local charIndex = string.len(input) - i local selectedChar = string.sub(input, charIndex, charIndex) if not isEven(tonumber(selectedChar)) then return false end end return true end function isEven(number) return (number % 2) == 0 end
-
ombrerico reacted to Serlite in 🏆 [$800] The Greatest Minds: Stephen Hawking 🌌
32.40
Bet: 82,219,668,244
placed by Serlite on 02/03/2021
Wagered
0.00017028 Multiplier
3.00x Profit
0.00034056 31.16
Bet: 82,219,669,310
placed by Serlite on 02/03/2021
Wagered
0.00017028 Multiplier
3.00x Profit
0.00034056 22.85
Bet: 82,219,670,347
placed by Serlite on 02/03/2021
Wagered
0.00017028 Multiplier
3.00x Profit
0.00034056 Ah, another familiar rollhunt format. I dug up an old script for anyone who still hasn't done this one:
chance = 33 nextbet = 0.00017028 bethigh = false currency = "Ltc" local targetStreak = 3 local longestDescendingStreak = 0 local lastWinningRollNumber = 100 function dobet() if win then if lastBet.Roll < lastWinningRollNumber then longestDescendingStreak = longestDescendingStreak + 1 else longestDescendingStreak = 1 end lastWinningRollNumber = lastBet.Roll else longestDescendingStreak = 0 lastWinningRollNumber = 100 end if longestDescendingStreak >= targetStreak then ching() stop() end end
-
ombrerico got a reaction from Tamara in 🏆 [$800] The Greatest Minds: Charles Darwin 🐒
Bet: 80,054,126,881
placed by ombrerico on 15/02/2021
Wagered
0.60000000 Multiplier
10.00x Profit
5.40000000 Bet: 80,055,233,252
placed by ombrerico on 15/02/2021
Wagered
0.60000000 Multiplier
20.00x Profit
11.40000000 55.22
Bet: 80,068,955,954
placed by ombrerico on 15/02/2021
Wagered
0.60000000 Multiplier
1.01x Profit
0.00612000
-
ombrerico reacted to Serlite in 🏆 [$800] The Greatest Minds: Albert Einstein 👓
Bet: 79,235,532,948
placed by Serlite on 08/02/2021
Wagered
0.00017856 Multiplier
5.00x Profit
0.00071424 Bet: 79,236,121,248
placed by Serlite on 08/02/2021
Wagered
0.00017856 Multiplier
5.00x Profit
0.00071424 Well, this is a new combination of previous hunt conditions! I had to stitch together some old scripts to make this one. As usual, feel free to modify the amount/chance/currency as needed. Don't forget to swap bethigh once you hit the first time!
Paste it into the Code tab of dicebot in Programmer Mode, and make sure you have a "slow.txt" file in your dicebot folder - otherwise, the IDs won't be numerical and you won't be able to hunt properly!
chance = 19.8000 nextbet = 0.00017856 bethigh = true currency = "Ltc" local pattern = "XX.X8" local endNumber = "8" function dobet() -- Get end number of bet ID local betIdString = tostring(lastBet.Id) local betIdEnd = string.sub(betIdString, -string.len(endNumber)) -- Break down roll number into comparable components local digit4 = round((lastBet.Roll * 100) % 10) local digit3 = round(((lastBet.Roll * 100) % 100 - digit4) / 10) local digit2 = round(((lastBet.Roll * 100) % 1000 - digit3 * 10 - digit4) / 100) local digit1 = round(((lastBet.Roll * 100) - digit2 * 100 - digit3 * 10 - digit4) / 1000) if win and betIdEnd == endNumber and isValidPattern(digit1, digit2, digit3, digit4) then print(lastBet.Roll) print(lastBet.Id) ching() stop() end end function round(x) return math.floor(x + 0.5) end function isValidPattern(digit1, digit2, digit3, digit4) local ref1 = string.sub(pattern, 1, 1) local ref2 = string.sub(pattern, 2, 2) local ref3 = string.sub(pattern, 4, 4) local ref4 = string.sub(pattern, 5, 5) if (ref1 == tostring(digit1) or ref1 == "X") and (ref2 == tostring(digit2) or ref2 == "X") and (ref3 == tostring(digit3) or ref3 == "X") and (ref4 == tostring(digit4) or ref4 == "X") then return true end return false end
-
ombrerico reacted to Serlite in 🏆 [$1000] The Greatest Minds: Nikola Tesla⚡
2 hits on 30x:
Bet: 77,685,299,900
placed by Serlite on 27/01/2021
Wagered
0.00036000 Multiplier
30.00x Profit
0.01044000 Bet: 77,685,300,559
placed by Serlite on 27/01/2021
Wagered
0.00036000 Multiplier
30.00x Profit
0.01044000 20.21:
Bet: 77,689,701,933
placed by Serlite on 28/01/2021
Wagered
0.00036000 Multiplier
1.01x Profit
0.00000367 This one took quite a while! The minimum bet increase also made it a bit more costly...but hey, at least I finished! Here are the basic scripts, in case anyone doesn't have them yet:
Part 1:
chance = 3.3000 nextbet = 0.00036000 bethigh = false currency = "Ltc" function dobet() if win then print(lastBet.Id) end if currentstreak >= 2 then stop() ching() end end Part 2:
chance = 98 nextbet = 0.00036 bethigh = false currency = "Ltc" function dobet() if lastBet.Roll == 20.21 then ching() stop() end end
-
ombrerico reacted to Serlite in 🏆 [$800] The Greatest Minds: Leonardo Da Vinci 🎨
Bet: 76,711,063,641
placed by Serlite on 18/01/2021
Wagered
0.00025000 Multiplier
2.50x Profit
0.00037500 Bet: 76,711,064,052
placed by Serlite on 18/01/2021
Wagered
0.00025000 Multiplier
2.50x Profit
0.00037500 Bet: 76,711,064,943
placed by Serlite on 18/01/2021
Wagered
0.00025000 Multiplier
2.50x Profit
0.00037500 Bet: 76,711,065,506
placed by Serlite on 18/01/2021
Wagered
0.00025000 Multiplier
2.50x Profit
0.00037500 Bet: 76,711,065,956
placed by Serlite on 18/01/2021
Wagered
0.00025000 Multiplier
2.50x Profit
0.00037500 A pretty straightforward alternating streak hunt - so I just dusted off an old script and changed up some settings. As usual, paste it in to the Code tab of dicebot in Programmer Mode:
chance = 39.6 nextbet = 0.00025000 bethigh = false currency = "Ltc" targetStreak = 5 defaultBetHigh = false function dobet() if currentstreak >= targetStreak then ching() stop() end if win then bethigh = not bethigh else bethigh = defaultBetHigh end end
-
ombrerico reacted to luizoruivo in 🏆 [$800] The Greatest Minds: Leonardo Da Vinci 🎨
Bet: 76,647,720,058
placed by luizoruivo on 18/01/2021
Wagered
0.00002900 Multiplier
2.52x Profit
0.00004403
Bet: 76,647,721,409
placed by luizoruivo on 18/01/2021
Wagered
0.00002900 Multiplier
2.52x Profit
0.00004405
Bet: 76,647,722,861
placed by luizoruivo on 18/01/2021
Wagered
0.00002900 Multiplier
2.52x Profit
0.00004403
Bet: 76,647,723,950
placed by luizoruivo on 18/01/2021
Wagered
0.00002900 Multiplier
2.52x Profit
0.00004405
Bet: 76,647,725,369
placed by luizoruivo on 18/01/2021
Wagered
0.00002900 Multiplier
2.52x Profit
0.00004403
I tried again using the website system, and here is the result:
Bet: 76,649,225,570
placed by luizoruivo on 18/01/2021
Wagered
0.00002900 Multiplier
2.51x Profit
0.00004389
Bet: 76,649,227,412
placed by luizoruivo on 18/01/2021
Wagered
0.00002900 Multiplier
2.51x Profit
0.00004390
Bet: 76,649,228,741
placed by luizoruivo on 18/01/2021
Wagered
0.00002900 Multiplier
2.51x Profit
0.00004389
Bet: 76,649,229,787
placed by luizoruivo on 18/01/2021
Wagered
0.00002900 Multiplier
2.51x Profit
0.00004390
Bet: 76,649,230,857
placed by luizoruivo on 18/01/2021
Wagered
0.00002900 Multiplier
2.51x Profit
0.00004389 Here is my settings:
I believe that the longer time running in this setting, the greater the variation in the payout
-
ombrerico reacted to Serlite in 🏆 [$800] The Greatest Minds: Isaac Newton 🍎
Bet: 76,059,383,338
placed by Serlite on 12/01/2021
Wagered
0.00024100 Multiplier
4.00x Profit
0.00072300 Bet: 76,059,559,696
placed by Serlite on 12/01/2021
Wagered
0.00024100 Multiplier
4.00x Profit
0.00072300 A nice and simple hunt within a range of numbers - this is a blast from the past! Here's a script I dusted off for this challenge. As usual, paste it into the Code tab of dicebot in Programmer Mode, and feel free to adjust the bet/currency as desired:
chance = 24.7500 nextbet = 0.00024100 bethigh = false currency = "Ltc" local lowerLimit = 8.61 local upperLimit = 9.61 function dobet() if win and lastBet.Roll >= lowerLimit and lastBet.Roll <= upperLimit then print(tostring(lastBet.Id)) ching() stop() end end
-
ombrerico reacted to Serlite in 🎄 [$1000] Merry Christmas from the Primedice Team 🎄
Bet: 74,284,756,970
placed by Serlite on 22/12/2020
Wagered
0.00020000 Multiplier
25.00x Profit
0.00480000 Bet: 74,284,757,344
placed by Serlite on 22/12/2020
Wagered
0.00020000 Multiplier
25.00x Profit
0.00480000 25.28
Bet: 74,285,367,728
placed by Serlite on 22/12/2020
Wagered
0.00020000 Multiplier
1.01x Profit
0.00000204 A nice and simple forum challenge for Christmas. I'm okay with that! As for the scripts, well...you probably don't need them, but just in case:
Part 1:
chance = 3.96 nextbet = 0.00020000 bethigh = false currency = "Ltc" function dobet() if win then print(lastBet.Id) end if currentstreak >= 2 then stop() ching() end end Part 2:
chance = 98 nextbet = 0.00020000 bethigh = true currency = "Ltc" function dobet() -- break down roll number into comparable components local digit4 = round((lastBet.Roll * 100) % 10) local digit3 = round(((lastBet.Roll * 100) % 100 - digit4) / 10) local digit2 = round(((lastBet.Roll * 100) % 1000 - digit3 * 10 - digit4) / 100) local digit1 = round(((lastBet.Roll * 100) - digit2 * 100 - digit3 * 10 - digit4) / 1000) if isValidPattern(digit1, digit2, digit3, digit4) and win then print (lastBet.Roll) print (lastBet.Id) ching() stop() end end function round(x) return math.floor(x + 0.5) end function isValidPattern(digit1, digit2, digit3, digit4) local stringNumber = tostring(digit1)..tostring(digit2)..tostring(digit3)..tostring(digit4) return string.find(stringNumber, "25") end
-
ombrerico reacted to Serlite in 🏆 [$800] Around the Globe: Algeria 🇩🇿
Bet: 73,564,817,132
placed by Serlite on 14/12/2020
Wagered
0.00023000 Multiplier
2.00x Profit
0.00023000 Bet: 73,564,817,665
placed by Serlite on 14/12/2020
Wagered
0.00023000 Multiplier
2.00x Profit
0.00023000 Bet: 73,564,818,093
placed by Serlite on 14/12/2020
Wagered
0.00023000 Multiplier
2.00x Profit
0.00023000 Bet: 73,564,818,568
placed by Serlite on 14/12/2020
Wagered
0.00023000 Multiplier
2.00x Profit
0.00023000
Bet: 73,565,039,168
placed by Serlite on 14/12/2020
Wagered
0.00023000 Multiplier
198.00x Profit
0.04531000 Pretty basic challenge for this week...basic enough that you don't really need a script for it! So go for it, if you've got the balance.
Word of warning though, variance at 200x can be very, very bad...so you may want to skip this challenge since it can easily become unprofitable.
-
ombrerico reacted to Serlite in 🏆 [$800] Around the Globe: Sweden 🇸🇪
88.21
Bet: 72,344,584,021
placed by Serlite on 30/11/2020
Wagered
0.00023000 Multiplier
3.30x Profit
0.00052900 84.32
Bet: 72,344,584,528
placed by Serlite on 30/11/2020
Wagered
0.00023000 Multiplier
3.30x Profit
0.00052900 95.82
Bet: 72,344,585,012
placed by Serlite on 30/11/2020
Wagered
0.00023000 Multiplier
3.30x Profit
0.00052900 This was a fun little challenge! Not much different from a normal streak hunt, except with an extra condition so I had to keep my own streak counter in code. Here's the script! As usual, paste it into the Code tab of dicebot in Programmer Mode, and change up currency/amount as needed.
chance = 30 nextbet = 0.00023000 bethigh = true currency = "Ltc" local rollTarget = 80.00 local streakTarget = 3 local matchingStreak = 0 function dobet() if win and lastBet.Roll >= rollTarget then print(lastBet.Id) matchingStreak += 1 else matchingStreak = 0 end if matchingStreak >= streakTarget then stop() ching() end end
-
ombrerico got a reaction from 26Rola in 🏆 [800$] Around the Globe: Colombia 🇨🇴
Bet: 72,280,398,327
placed by ombrerico on 29/11/2020
Wagered
6.00000000 Multiplier
28.29x Profit
163.71426000 Bet: 72,280,451,092
placed by ombrerico on 29/11/2020
Wagered
6.00000000 Multiplier
28.29x Profit
163.71426000
-
ombrerico reacted to Serlite in 🏆 [$800] Around the Globe: New Zealand 🥇
Well, this one was pretty fun to script! Some interesting stuff that plays around with the roll numbers.
Bet: 68,162,175,590
placed by Serlite on 28/09/2020
Wagered
3.92000000 Multiplier
19.49x Profit
72.47366560 Bet: 68,162,175,982
placed by Serlite on 28/09/2020
Wagered
3.92000000 Multiplier
19.49x Profit
72.47366560 And here's the script - it's almost all brand-new! As usual, feel free to update the currency and amount as needed, then paste it into the Code tab of dicebot in Programmer Mode:
chance = 5.08 nextbet = 3.92 bethigh = true currency = "Doge" local firstHit = false function dobet() local betIdString = tostring(lastBet.Id) if win then if firstHit then print(lastBet.Id) ching() stop() elseif isEvenSum(betIdString) firstHit = true print(lastBet.Id) else firstHit = false end elseif !win then firstHit = false end end function isEvenSum(betIdString) local sum = 0 for i = 1, string.len(betIdString) do sum += tonumber(string.sub(betIdString, i, i)) end print (sum) return (sum % 2) == 0 end
-
ombrerico reacted to Serlite in 🏆 [800$] Around the Globe: Turkey 🇹🇷
Huh, this ended up being a lot easier than I thought! I guess the bet ID thing wasn't so rare after all.
Bet: 67,739,741,533
placed by Serlite on 21/09/2020
Wagered
3.92000000 Multiplier
5.00x Profit
15.68000000 Bet: 67,739,808,599
placed by Serlite on 21/09/2020
Wagered
3.92000000 Multiplier
5.00x Profit
15.68000000 Bet: 67,739,930,177
placed by Serlite on 21/09/2020
Wagered
3.92000000 Multiplier
5.00x Profit
15.68000000 Bet: 67,740,581,577
placed by Serlite on 22/09/2020
Wagered
3.92000000 Multiplier
5.00x Profit
15.68000000 As for the script, well, it's a pretty basic one. The important thing is that you add "slow.txt" into your dicebot folder, or else dicebot will see the GUID ID and not the numerical ID. Other than that, feel free to change up the currency/amount as needed:
chance = 19.8000 nextbet = 3.92 bethigh = true currency = "Doge" function dobet() local betIdString = tostring(lastBet.Id) local betIdEnd = string.sub(betIdString, -2) if win and (betIdEnd == "33" or betIdEnd == "55" or betIdEnd == "77" or betIdEnd == "99") then print(lastBet.Roll) print(lastBet.Id) ching() stop() end end
-
ombrerico reacted to Serlite in 🏆 [$800] Around the Globe: Spain 🇪🇸
Well, this is a nice and easy one - hopefully everyone gives this a shot!
Bet: 67,327,612,359
placed by Serlite on 14/09/2020
Wagered
3.68000000 Multiplier
2.00x Profit
3.68000000 Bet: 67,327,612,573
placed by Serlite on 14/09/2020
Wagered
3.68000000 Multiplier
2.00x Profit
3.68000000 Bet: 67,327,612,795
placed by Serlite on 14/09/2020
Wagered
3.68000000 Multiplier
2.00x Profit
3.68000000 Bet: 67,327,613,008
placed by Serlite on 14/09/2020
Wagered
3.68000000 Multiplier
2.00x Profit
3.68000000 As for the script, well, it may be familiar to some of you. But I haven't used it in a while! As usual, paste it into the Code tab of Dicebot in Programmer Mode. Feel free to update currency/amount as desired. Good luck!
chance = 49.5 nextbet = 3.68 bethigh = true currency = "Doge" local targetStreak = 4 local longestAscendingStreak = 0 local lastWinningRollNumber = 100 function dobet() if win then if lastBet.Roll > lastWinningRollNumber then longestAscendingStreak = longestAscendingStreak + 1 print(lastBet.id) else longestAscendingStreak = 1 print(lastBet.id) end lastWinningRollNumber = lastBet.Roll else longestAscendingStreak = 0 lastWinningRollNumber = 100 end if longestAscendingStreak >= targetStreak then ching() stop() end end
-
ombrerico reacted to Serlite in 🏆 [$800] Around the Globe: Chile 💃
Whew, this 2x multiplier really got me worried about variance. But I finished it anyway!
1.42
Bet: 67,003,320,925
placed by Serlite on 07/09/2020
Wagered
3.68000000 Multiplier
2.00x Profit
3.68000000 6.58
Bet: 67,003,567,305
placed by Serlite on 07/09/2020
Wagered
3.68000000 Multiplier
2.00x Profit
3.68000000 3.29
Bet: 67,004,562,843
placed by Serlite on 07/09/2020
Wagered
3.68000000 Multiplier
2.00x Profit
3.68000000 Here's the script that I used - nothing complicated, just the usual rollhunt. Good luck!
chance = 49.5 nextbet = 3.68 bethigh = false currency = "Doge" numbersToHunt = {1.42, 1.52, 3.29, 4.03, 6.58} function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end
-
ombrerico reacted to Serlite in 🏆 [$800] Around the Globe: Venezuela ⚡
All right, a normal rollhunt! Nice to have something simple once in a while...
60.20
Bet: 66,339,856,339
placed by Serlite on 24/08/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 31.00
Bet: 66,340,455,761
placed by Serlite on 24/08/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 2.03
Bet: 66,339,993,014
placed by Serlite on 24/08/2020
Wagered
3.40000000 Multiplier
1.01x Profit
0.03468000 And here's the script. You may notice I don't add any logic to check the bet ID...why's that? Because the most efficient way to hunt this challenge is when you don't have to worry about the bet ID - when you know for sure it will have a 3 in it.
To guarantee that, just wait until the bet IDs being rolled have a digit 3 in a pretty high place. Like the bet that I rolled: 66,339,856,339 - it has a 3 in the hundred million place, which won't change for a very long time. Then just do a normal rollhunt, because you know that your bet IDs will also have at least a 3 in the same place! Feel free to change up the currency and bet amount, and don't forget to delete groups as you hit them.
chance = 98 nextbet = 3.4 bethigh = false currency = "Doge" numbersToHunt = { -- Group 1 2.60, 6.02, 60.20, -- Group 2 1.30, 13.01, 31.00, -- Group 3 2.03, 20.30, 30.03 } function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end
-
ombrerico reacted to Serlite in 🏆 [$800] Around the Globe: Jamaica 🌴
Whew, after weeks of those tough challenges, it's nice to have one I can script without worrying about the cost.
Bet: 65,939,386,899
placed by Serlite on 17/08/2020
Wagered
3.27000000 Multiplier
3.00x Profit
6.54000000 Bet: 65,939,387,182
placed by Serlite on 17/08/2020
Wagered
3.27000000 Multiplier
3.00x Profit
6.54000000 Bet: 65,939,387,469
placed by Serlite on 17/08/2020
Wagered
3.27000000 Multiplier
3.00x Profit
6.54000000 As for the script, it's an old one I dug up. Still works! Feel free to change currency/amount as needed, and paste it into the Code tab of dicebot in Programmer Mode. Good luck!
chance = 33 nextbet = 3.27 bethigh = false currency = "Doge" local targetStreak = 3 local longestDescendingStreak = 0 local lastWinningRollNumber = 100 function dobet() if win then if lastBet.Roll < lastWinningRollNumber then longestDescendingStreak = longestDescendingStreak + 1 else longestDescendingStreak = 1 end lastWinningRollNumber = lastBet.Roll else longestDescendingStreak = 0 lastWinningRollNumber = 100 end if longestDescendingStreak >= targetStreak then ching() stop() end end