Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation since 05/06/22 in all areas

  1. 6 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk47

    You can claim prizes on the link below until the 03rd of May: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 220 winners!
  2. 6 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk38

    You can claim prizes on the link below until the 28th of February: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 220 winners!
  3. 6 points
    Nenad

    [$800] PD Weekly Heroes Wk12

    You can claim prizes on the link below until the 31st of August: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 258 winners!
  4. 6 points
    Nenad

    [$800] PD Weekly Heroes Wk10

    You can claim prizes on the link below until the 16th of August: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 279 winners!
  5. 5 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk31

    You can claim prizes on the link below until the 13th of January: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 241 winners!
  6. 5 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk21

    You can claim prizes on the link below until the 03rd of November: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 269 winners!
  7. 5 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk19

    You can claim prizes on the link below until the 19th of November: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 246 winners!
  8. 5 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk18

    You can claim prizes on the link below until the 13th of November: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 269 winners!
  9. 5 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk17

    You can claim prizes on the link below until the 05th of October: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 290 winners!
  10. 5 points
    Nenad

    [$800] PD Weekly Heroes Wk8

    You can claim prizes on the link below until the 8th of August: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 283 winners!
  11. 4 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk55

    You can claim prizes on the link below until the 30th of June! CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 322 winners!
  12. 4 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk51

    You can claim prizes on the link below until the 30th of May: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 373 winners!
  13. 4 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk46

    You can claim prizes on the link below until the 28th of April: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 194 winners!
  14. 4 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk42

    You can claim prizes on the link below until the 31st of March: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 252 winners!
  15. 4 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk30

    You can claim prizes on the link below until the 05th of January: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 209 winners!
  16. 4 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk27

    You can claim prizes on the link below until the 15th of December: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 251 winners!
  17. 4 points
    Serlite

    [$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();
  18. 4 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk20

    You can claim prizes on the link below until the 27th of October: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 276 winners!
  19. 4 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk15

    You can claim prizes on the link below until the 21st of September: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 228 winners!
  20. 4 points
    Nenad

    [$800] PD Weekly Heroes Wk13

    You can claim prizes on the link below until the 7 of September: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 294 winners!
  21. 4 points
    CHAYO

    [$800] PD Weekly Heroes Wk10

    Bet: 112,010,497,394 placed by CHAYO on 11/07/2022 Wagered 0.50000000 Multiplier 4.00x Profit 1.50000000 Bet: 112,010,497,609 placed by CHAYO on 11/07/2022 Wagered 0.50000000 Multiplier 4.00x Profit 1.50000000 Bet: 112,010,497,771 placed by CHAYO on 11/07/2022 Wagered 0.50000000 Multiplier 4.00x Profit 1.50000000
  22. 4 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk7

    You can claim prizes on the link below until the 28th of July: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 271 winners!
  23. 4 points
    Nenad

    [$800] PD Weekly Heroes Wk6

    You can claim prizes on the link below until the 13th of July: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 268 winners!
  24. 4 points
    Nenad

    [$800] PD Weekly Heroes Wk5

    You can claim prizes on the link below until the 5th of July: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 280 winners!
  25. 3 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk53

    You can claim prizes on the link below until the 15th of June! CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 217 winners!
  26. 3 points
    fialog

    What is a really makes a good Gambler?

    normal player for time pass
  27. 3 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk50

    You can claim prizes on the link below until the 26th of May: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 270 winners!
  28. 3 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk50

    PD Weekly Heroes Wk 50 Ends: 24/04/2023 @Midday (12pm) GMT Requirements Win a bet by rolling at least 1 of these numbers: 33.33 | 44.44 | 55.55 | 66.66| 77.77 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, Feel free to edit your posts as you catch the new bets.
  29. 3 points
    None of now have to build that.
  30. 3 points
    100$+ long back in 2017
  31. 3 points
    nooncargo

    Seed or Luck

    More like skem it is
  32. 3 points
    not sure if i am a even a gambler
  33. 3 points
    imporx

    What is a really makes a good Gambler?

    Control over greed, when to stop, when you take break.
  34. 3 points
    Crispus2112

    Losing 13 time is possible?

    worse on 2x is 34 red streak as per worse record i had checked
  35. 3 points
    mayday7974

    Losing 13 time is possible?

    some on once told me in chat that on 2x it can go above 30 also
  36. 3 points
    aebaras

    Losing 13 time is possible?

    ya you can get many more then this its multiplier into 20
  37. 3 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk49

    You can claim prizes on the link below until the 03rd of May: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 300 winners!
  38. 3 points
    citingale

    win big in our forum challenges!

    how much big it can be max is 4$
  39. 3 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk48

    You can claim prizes on the link below until the 03rd of May: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 220 winners!
  40. 3 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk45

    You can claim prizes on the link below until the 20th of April: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 259 winners!
  41. 3 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk43

    You can claim prizes on the link below until the 07th of April: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 248 winners!
  42. 3 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk32

    You can claim prizes on the link below until the 20th of January: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 230 winners!
  43. 3 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk29

    You can claim prizes on the link below until the 29th of December: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 219 winners!
  44. 3 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk28

    You can claim prizes on the link below until the 31st of December: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 225 winners!
  45. 3 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk25

    You can claim prizes on the link below until the 31st of November: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 216 winners!
  46. 3 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk25

    PD Weekly Heroes Wk25 Ends: 31/10/2022 @Midday (12pm) GMT Requirements Win a bet by hitting a 50x multiplier and the bet ID has to end with an Odd number (1,3,5.7,9) 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)
  47. 3 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk22

    You can claim prizes on the link below until the 10th of November: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 211 winners!
  48. 3 points
    AleksandarZ

    [$800] PD Weekly Heroes Wk16

    You can claim prizes on the link below until the 27th of September: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 261 winners!
  49. 3 points
    Nenad

    [$800] PD Weekly Heroes Wk11

    You can claim prizes on the link below until the 24th of August: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 323 winners!
  50. 3 points
    Nenad

    [$800] PD Weekly Heroes Wk9

    You can claim prizes on the link below until the 16th of August: CLAIM HERE Make sure you are logged in to the proper account Congratulations to the 279 winners!
×