AleksandarZ 273 #1 Posted January 30 PD Weekly Heroes Wk 39 Ends: 06/02/2023 @Midday (12pm) GMT Requirements Hit 2 different numbers from the following: 10.10 | 20.20 | 30.30 | 40.40 | 50.50 | 60.60 | 70.70 | 80.80 | 90.90 0.03 USD minimum bet amount (in any currency). Tips & Terms & Conditions 1 valid entry per household. Bets must have been made after the commencement of this promotion. Do not change your linked account during the whole duration of the promotion. 10+ forum post count. Primedice employees can not participate in official Primedice.com forum challenges. This does not apply to moderators. Haven't broken any General Giveaways Rules! Prize Pool(s) Minimum prize pool: $150 If over 30 participants: $350 If over 50 participants: $450 If over 100 participants: $550 If over 200 participants: $800 How to Enter Respond to this topic, and link your bet IDs using the link function in the text editor. Feel free to edit your posts as you catch the new bets. (Paste your bet id, then highlight and click on the link bet button, as shown in the image below) 1 1 999qwerty999 and Chryz99 reacted to this Share this post Link to post Share on other sites
BMWx7 32 #2 Posted January 30 80.80 casino:118216266073 90.90 casino:118216461071 Share this post Link to post Share on other sites
Jasdin 5 #3 Posted January 30 (edited) 30.30 casino:118235204721 20.20 casino:118245746367 Edited January 31 by Jasdin 1 Share this post Link to post Share on other sites
dobriak 24 #4 Posted January 30 casino:118216989303 casino:118217384933 Share this post Link to post Share on other sites
Rodrigo 0 #5 Posted January 30 casino:118217654562 casino:118217686392 Share this post Link to post Share on other sites
Noeprellik1 345 #6 Posted January 30 (edited) casino:118218091153 casino:118218406039 Edited January 30 by Noeprellik1 Share this post Link to post Share on other sites
SLVone 40 #7 Posted January 30 (edited) casino:118218101410 casino:118218295247 Edited January 30 by SLVone Share this post Link to post Share on other sites
EliDiaz 9 #8 Posted January 30 (edited) 20.20 casino:118217218767 10.10 casino:118267071092 Edited February 1 by EliDiaz Share this post Link to post Share on other sites
ameobi 20 #9 Posted January 30 (edited) casino:118218987811 casino:118219057530 Edited January 30 by ameobi Share this post Link to post Share on other sites
dznuts8585 12 #10 Posted January 30 casino:118221421807 casino:118217794345 Share this post Link to post Share on other sites
Sumitpatel 15 #11 Posted January 30 casino:118222615162 casino:118222715820 Share this post Link to post Share on other sites
Adrenallin83 18 #12 Posted January 30 (edited) casino:118224299786 casino:118225941587 Edited January 30 by Adrenallin83 Share this post Link to post Share on other sites
CHAYO 21 #13 Posted January 30 10.10 casino:118222729779 40.40 casino:118224045690 Share this post Link to post Share on other sites
PMR 0 #14 Posted January 30 casino:118226470751 casino:118226917587 Share this post Link to post Share on other sites
Caligula6 38 #15 Posted January 30 20.20 casino:118226613684 70.70 casino:118227689097 Share this post Link to post Share on other sites
pedrojmelo 44 #16 Posted January 30 casino:118227407178 casino:118228421392 Share this post Link to post Share on other sites
Serlite 589 #17 Posted January 31 30.30 118,229,761,915 (https://primedice.com/?iid=house%3A118229761915&modal=bet) 50.50 118,229,801,178 (https://primedice.com/?iid=house%3A118229801178&modal=bet) Another straightforward challenge that's easy to script - yay! It's a pain to manually hunt these, so automating them where possible saves you a lot of time staring at the screen. For anyone that needs it, here's the JavaScript I used. Make sure you read it carefully so you know what it does! Update the values as needed for your currency/amount, then paste it into your browser's console while on PD. // ========================================== // 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 = [10.10, 20.20, 30.30, 40.40, 50.50, 60.60, 70.70, 80.80, 90.90]; if (won && (winningNumbers.indexOf(rollNumber) != -1)) { 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.00032760, "target":1.99, "condition":"above" }); // Run this if you want to interrupt betting stopBetting(); 1 26Rola reacted to this Share this post Link to post Share on other sites
dondiego 0 #18 Posted January 31 # 70.70 casino:118230224363 # 90.90 casino:118230459604 Share this post Link to post Share on other sites
octoling 42 #19 Posted January 31 50.50 casino:118229437713 30.30 casino:118231320291 Share this post Link to post Share on other sites
Genie 2 #20 Posted January 31 casino:118224961217 casino:118231755919 Share this post Link to post Share on other sites
quartz97 23 #21 Posted January 31 90.90 casino:118231417740 10.10 casino:118231843938 Share this post Link to post Share on other sites
willames 6 #22 Posted January 31 40.40 casino:118230319993 20.20 casino:118232403647 Share this post Link to post Share on other sites
Rsd123 8 #23 Posted January 31 casino:118233896334 casino:118233938126 Share this post Link to post Share on other sites
backload921 1 #24 Posted January 31 (edited) casino:118220512364 casino:118264592037 Edited February 1 by backload921 bet inserted Share this post Link to post Share on other sites
proearner 23 #25 Posted January 31 casino:118235870304 casino:118236003515 Share this post Link to post Share on other sites