Leaderboard
Popular Content
Showing content with the highest reputation since 09/01/23 in all areas
-
6 points
[$800] PD Weekly Heroes Wk38
jullifit and 5 others reacted to AleksandarZ for a post in a topic
You can claim prizes on the link below until the 31st of February: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 220 winners! -
3 points
[$800] PD Weekly Heroes Wk35
26Rola and 2 others reacted to AleksandarZ for a post in a topic
You can claim prizes on the link below until the 10th of February: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 216 winners! -
2 points
[$800] PD Weekly Heroes Wk39
999qwerty999 and one other reacted to AleksandarZ for a post in a topic
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) -
2 points
[$800] PD Weekly Heroes Wk37
26Rola and one other reacted to AleksandarZ for a post in a topic
You can claim prizes on the link below until the 24th of February: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 201 winners! -
2 points
[$800] PD Weekly Heroes Wk36
Laixs and one other reacted to AleksandarZ for a post in a topic
You can claim prizes on the link below until the 17th of February: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 225 winners! -
1 point
[$800] PD Weekly Heroes Wk40
kyleinkman reacted to AleksandarZ for a post in a topic
PD Weekly Heroes Wk 40 Ends: 13/02/2023 @Midday (12pm) GMT Requirements Win a bet by hitting a 45x multiplier and the bet ID has to end with an EVEN number (0,2,4,6,8) 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 point
[$800] PD Weekly Heroes Wk39
donreyadano reacted to AleksandarZ for a post in a topic
You can claim prizes on the link below until the 06st of March: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 181 winners! -
1 point
[$800] PD Weekly Heroes Wk38
ktfor57 reacted to AleksandarZ for a post in a topic
PD Weekly Heroes Wk 38 Ends: 30/01/2023 @Midday (12pm) GMT Requirements Win 2 non-consecutive bets on 50x payout (one by rolling over, and the second one under). 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 point30.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 point
Seuntjie bot does not work any more after update
Nesyeg reacted to Sansasyonel for a post in a topic
I recommend using powershell. -
1 pointcasino:118146117332 casino:118146148872
-
1 pointHuh!! A new phone would do and😋..going on a vacation won't be a bad idea 🤣🤣
-
1 point
[$800] PD Weekly Heroes Wk36
Journ24 reacted to AleksandarZ for a post in a topic
PD Weekly Heroes Wk 36 Ends: 16/01/2023 @Midday (12pm) GMT Requirements Win a bet on a 5x multiplier with a rolled number anywhere between 81:00 and 83:00. (Example - 81.57) 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 pointHeya Dicers, We are currently having a new way for betting with a feature called advanced auto betting. In this thread I'll be helping people with any questions or issues they might have with this feature. If you find a bug while using the advanced auto betting or you have a question on how to get a strategy to work I'll be able to hopefully help! Looking forward to helping!
-
1 point
What would you like to see in the next version of Primedice?
Sansasyonel reacted to Saintos for a post in a topic
A proper API Documentation for Primedice (GraphQL Endpoint) I would love to have a proper documentation about the Primedice API. The only "guide" we have is this: https://forum.primedice.com/topic/36185-guide-to-using-the-primedice-api/ Which reads like an an intern was ordered to write it. Proper documentation should include possible Query's, Mutations, and the Scheme of the backend. Authentication examples, since the one right now is sparsely explained. I get that some of that information seems a bit sensitive to make public for a Casino, but given that the endpoint is Public and someone with enough time and knowledge can figure most of these things out by themself, the argument dosen't make sense. Why hasn't that happened yet? (A guess) Could it be that Primedice prefers that people use the on-site autobetting and their website in general (For whatever reasons), and therefore dosen't put any proper documentation or similar out for developers. Another reason could be laziness. Both are despicable -
1 point
-
1 pointRequirement : Discipline Imagine you only have faucet of 100 which most do have. How long before you can make 1BTC safely? If you win 3% of your capital every day you will reach 1BTC in 468 days. Calculation: 100 x 1.03^468 = 1.01817202 BTC It is too long to wait for a year and 3 months. But it is safe. It's amazing to think about the possibilities with just a daily goal of 3%. What if you don't want to wait a year? Well you could always deposit to speed things up! With just 0.07 BTC, you can reach 1 BTC in 90 days. Not enough capital? Try to win 5 times a day with 3% of capital every day. With just 100 sat faucet you can get 1BTC in 90 days. I have done this many times and always bust when I am around 1M sats. Reason: I always think I can roll a few more 3%. So I try to win around 30 times in a day. If i stick to just 3 to 5 wins. I always am profit. I usually bust on the weekends where I have a lot of spare time.. Rolling and rolling and then busted. So basically this all just theory because have to reached it yet. Farthest I have gone up to was 0.3 BTC from 0.07 BTC in 7 days.. Winning only 3-7 times a day with base bet 3% of capital. After 7 days I was already nearing 1BTC so I tried to make it happen on the 8th day just to bust. I am sharing this as it may work for others who are more disciplined and not tempted to keep on rolling after reaching daily target.
-
-1 points
What Christmas gift do you want this year?
gustav reacted to chidieberes for a post in a topic
I wish for someone that would Love me the way I Love