Jump to content

DragoslavP

Community Manager
  • Posts

    529
  • Joined

  • Days Won

    31

Everything posted by DragoslavP

  1. Perfect Thanks for understanding, and once again, sorry for the late response πŸ™
  2. Hello @Feuchtebuxxe I'm sorry for the late response; somehow, this slipped through my notifications. As you mentioned, the rule clearly states: β€œMinimum odds on the last (losing) match/selection that was lost cannot be higher than 5x." It says last selection, not β€œlast Same Game Multi.” I understand how this could be confusing at first, but the purpose of this rule is very specific. It exists to prevent slips structured like this: 1.01x βœ… 1.01x βœ… 1.01x βœ… 1.01x βœ… 1000x ❌ Total odds: 1000.5x Without this rule, someone could stack several very low, almost guaranteed odds and then add one extremely high and unrealistic selection at the end just to artificially inflate the total odds. That’s exactly what this rule is designed to prevent.So the restriction applies strictly to the last losing selection or a match, regardless of whether it’s part of a Same Game Multi or a regular pick. Additionally, The bet that you've asked about (sport:548323840) would not be winning since it has 2 losing selections. Best regards, DragoslavP.
  3. @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap'); :root { --primary: #071824; --gold: #FFB800; --blue: #0079ff; --surface: #0a2236; --surface2: #0d2a40; --text: #e0eef8; --muted: #7fa8c4; } * { margin:0; padding:0; box-sizing:border-box; } body { background: var(--primary); color: var(--text); font-family: 'Inter', sans-serif; min-height: 100vh; overflow-x: hidden; } .container { max-width:740px; margin:0 auto; padding:24px 20px 60px; position:relative; z-index:1; } .fade-up { opacity:0; transform:translateY(28px); animation:fadeUp .6s ease forwards; } @keyframes fadeUp { to { opacity:1; transform:none; } } .header { text-align:center; padding:44px 28px 36px; background: linear-gradient(160deg, #0d2a40 0%, #071824 100%); border-radius:20px; border:1px solid #ffffff12; margin-bottom:20px; position:relative; overflow:hidden; animation-delay:.05s; } .header::before { content:''; position:absolute; top:-60px; left:50%; transform:translateX(-50%); width:340px; height:340px; background: radial-gradient(circle, #FFB80018 0%, transparent 70%); animation: pulse-glow 4s ease-in-out infinite; pointer-events:none; } @keyframes pulse-glow { 0%,100% { opacity:.6; transform:translateX(-50%) scale(1); } 50% { opacity:1; transform:translateX(-50%) scale(1.15); } } .header h1 { font-size:34px; font-weight:900; background: linear-gradient(90deg, #FFB800, #ffda6e, #FFB800); background-size:200%; -webkit-background-clip:text; -webkit-text-fill-color:transparent; animation: shimmer 3s linear infinite; margin-bottom:6px; } @keyframes shimmer { to { background-position:200% center; } } .ends-label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:1.2px; margin-bottom:14px; } .ends-label strong { color:#fff; } .header-desc { font-size:15px; color:#b0cee4; max-width:480px; margin:0 auto 24px; line-height:1.7; } .play-btn { display:inline-block; padding:16px 46px; background: linear-gradient(135deg, #FFB800, #e6a500); color:#071824; font-size:17px; font-weight:800; text-decoration: none !important; border-radius:12px; transition:transform .2s, box-shadow .2s; box-shadow:0 0 0 0 #FFB80055; position:relative; overflow:hidden; } .play-btn:hover { transform:translateY(-3px); box-shadow:0 8px 32px #FFB80055; } .prize-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:16px; } .prize-card { background: var(--surface); border-radius:16px; padding:28px 18px; text-align:center; border:1px solid transparent; position:relative; overflow:hidden; transition:transform .3s, border-color .3s, box-shadow .3s; } .prize-card.gold { border-color:#FFB80044; } .prize-card.silver { border-color:#0079ff33; } .prize-amount { font-size:42px; font-weight:900; line-height:1; margin-bottom:6px; } .prize-card.gold .prize-amount { color:#FFB800; } .prize-card.silver .prize-amount { color:#0079ff; } .prize-label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.8px; } .prize-sub { font-size:13px; color:#6a90a8; margin-top:4px; } .pill { background:#0079ff12; border:1px solid #0079ff33; border-radius:40px; padding:10px 20px; text-align:center; font-size:13px; font-weight:600; color:#4da6ff; margin-bottom:18px; } .section { background: var(--surface); border-radius:16px; padding:24px; margin-bottom:16px; border:1px solid #ffffff0d; } .section-title { font-size:12px; font-weight:700; color:var(--gold); text-transform:uppercase; letter-spacing:1.4px; margin-bottom:18px; display:flex; align-items:center; gap:8px; } .steps { display:flex; flex-direction:column; gap:14px; } .step { display:flex; gap:14px; align-items:flex-start; } .step-num { min-width:34px; height:34px; background:#0079ff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:14px; color:#fff; flex-shrink:0; } .step-text { font-size:15px; color:#b0cee4; padding-top:6px; } .step-text strong { color:#fff; } .req-list { display:flex; flex-direction:column; gap:10px; } .req-item { display:flex; align-items:center; gap:14px; background:var(--primary); border-radius:12px; padding:13px 16px; border:1px solid #ffffff0a; } .req-icon { font-size:20px; flex-shrink:0; } .req-text { font-size:14px; color:#b0cee4; } .req-text strong { color:#FFB800; } .pool-total { text-align:center; padding:22px; background:linear-gradient(135deg,#FFB80012,#FFB80005); border:1px solid #FFB80044; border-radius:14px; margin-bottom:16px; } .pool-total .amount { font-size:52px; font-weight:900; color:#FFB800; } .pool-total .label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:1px; } .dist-list { display:flex; flex-direction:column; gap:8px; } .dist-item { display:flex; justify-content:space-between; align-items:center; padding:12px 16px; background:var(--primary); border-radius:10px; border:1px solid #ffffff0a; font-size:14px; } .dist-item .who { color:#b0cee4; } .dist-item .val { color:#FFB800; font-weight:700; } .notice { background:#ff6b0010; border:1px solid #ff6b0040; border-radius:14px; padding:16px; margin-bottom:16px; display:flex; gap:14px; align-items:flex-start; } .n-text { font-size:13px; color:#f0c8a0; line-height:1.7; } .stake-badge { text-align:center; padding:14px; background:linear-gradient(135deg,#0079ff18,#0079ff08); border:1px solid #0079ff44; border-radius:12px; color:#4da6ff; font-weight:700; font-size:14px; margin-bottom:16px; } details { background:var(--primary); border:1px solid #ffffff0d; border-radius:14px; overflow:hidden; } summary { padding:16px 20px; cursor:pointer; font-weight:700; color:var(--muted); font-size:14px; display:flex; justify-content:space-between; } .terms-body { padding:0 20px 20px; font-size:13px; color:#6a90a8; line-height:1.9; } .terms-body h2 { font-size:12px; color:#FFB800; text-transform:uppercase; margin:18px 0 8px; } @media(max-width:480px){ .prize-row{grid-template-columns:1fr;} .header h1{font-size:26px;} } All roads lead to Athens Competition ends: When the last match of quarter finals finish EuroLeague Post-Season is here! Win a bet on any Post-Season EuroLeague game and share your Bet IDs below. Better odds will lead you towards top of the leaderboard! πŸ€ Bet Now $3,000 PRIZE POOL $800 1ST PLACE Top Prize πŸ’‘ Only one reply per user! (You may edit your post to update your better Bet ID) πŸ“‹ How To Enter 1 Win a bet on any Post-Season EuroLeague game. 2 Submitted bets must be a minimum of 10 odds. 3 Copy your Bet ID(s) after placing your bet 4 Reply to this thread with your Bet ID(s) to enter. βœ… Requirements πŸ€ Bets must be on any Post-Season EuroLeague Game πŸ’΅ Minimum bet amount: $2.00 πŸ“ˆ Minimum 10 odds (bets must be winning) πŸ’¬ Reply to this thread with your Bet ID(s) ❌ Cashed out bets are not allowed. βœ… Stake Shield / SGM bets are allowed. πŸ”’ Must be a Stake.com account β€” Bronze VIP or above πŸ’° Prize Pool Distribution $3,000 Total Prize Pool 1st Place$800 2nd Place$600 3rd Place$300 4th Place$200 5th Place$100 6th OnwardShare of $1,000 In the event of a tie, the higher bet amount wins. If still tied, the user who posted first will have an advantage. ‼️ Stake.com users only ‼️ πŸ“„ Full Terms & Conditions β€” click to expand This competition is published by Stake, which operates stake.com, and is subject to the Stake Terms and Conditions and Community Terms of Use. Prizes & Delivery Winners will have their username displayed on the thread with a prize claim link. Prizes delivered within 72 hours of competition ending. Users with highets odds on the eligible bets will be winners. One entry per user β€” multiple entries will be deleted and result in only the first being valid. Eligibility Bronze VIP account or above on Stake KYC Level 2 verification required Account must have no restrictions or exclusions Must maintain only one Stake account Stake reserves the right to disqualify any user due to promotion or account abuse, which may also result in a permanent ban. Winners will be contacted directly via support. Prizes will be distributed in the form of a coupon, which will also be posted as the final comment on this post. Only the winners of previous Rounds of this promotion can participate (Everyone can play first round)
  4. :root { --card: rgba(10, 20, 38, 0.75); --line: rgba(255,255,255,0.12); --text: #f5f7fb; --muted: #a7b4c9; --gold: #f7c948; --shadow: 0 20px 60px rgba(0, 0, 0, 0.28); } .glass-card { border: 1px solid var(--line); border-radius: 28px; padding: 28px; margin-bottom: 20px; background: linear-gradient(135deg, rgba(247, 201, 72, 0.08), transparent 40%), linear-gradient(225deg, rgba(247, 201, 72, 0.08), transparent 40%), linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)), var(--card); box-shadow: var(--shadow); backdrop-filter: blur(14px); color: var(--text); transition: 0.25s ease; } .glass-card:hover { transform: translateY(-4px); } .hero-title { font-size: 30px; font-weight: 800; text-align: center; margin-top: 10px; } .hero-sub { text-align: center; color: var(--muted); margin-top: 6px; font-size: 15px; } /* BADGE */ .badge { position: absolute; top: 18px; right: 18px; padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(247,201,72,0.6); background: rgba(255,255,255,0.03); font-weight: 700; overflow: hidden; backdrop-filter: blur(6px); box-shadow: 0 4px 18px rgba(0,0,0,0.25); } .badge::after { content:""; position:absolute; top:-50%; left:-60%; width:60%; height:200%; background: linear-gradient(90deg,transparent,rgba(255,255,255,0.35),transparent); transform: rotate(20deg); animation: shineBadge 4s linear infinite; } @keyframes shineBadge { 0% { left:-60%; } 100% { left:120%; } } /* πŸ€ BOUNCE ANIMATION */ .bounce-ball { font-size: 20px; display: inline-block; animation: bounce 1s infinite ease-in-out; will-change: transform; } @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } } /* πŸ”₯ BET NOW BUTTON (slightly bigger) */ .bet-wrap { text-align: center; margin: 14px 0 10px; } .bet-btn { display: inline-block; padding: 16px 46px; background: linear-gradient(135deg, #FFB800, #e6a500); color: #071824; font-weight: 800; font-size: 17px; border-radius: 14px; text-decoration: none !important; transition: 0.25s ease; box-shadow: 0 10px 25px rgba(255,184,0,0.25); } .bet-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(255,184,0,0.4); } /* HOW TO ENTER */ .challenge-box { background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); border: 1px solid rgba(247,201,72,0.18); border-radius: 20px; padding: 26px; margin-bottom: 18px; text-align: center; position: relative; overflow: hidden; } .challenge-title { font-size: 18px; font-weight: 800; color: var(--gold); margin-bottom: 18px; text-transform: uppercase; } .feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; } .feature { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 14px 14px 14px 44px; font-size: 14px; transition: 0.25s ease; position: relative; display: flex; align-items: center; text-align: left; } .feature:hover { background: rgba(247,201,72,0.08); transform: translateY(-4px); } .feature::before { content: attr(data-step); position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; background: rgba(247,201,72,0.15); border: 1px solid rgba(247,201,72,0.6); color: var(--gold); font-size: 11px; font-weight: 800; display:flex; align-items:center; justify-content:center; } /* REQUIREMENTS ITEM */ .req-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 12px; margin-bottom: 10px; font-size: 14px; text-align: left; transition: 0.25s ease; } .req-item:hover { background: rgba(247,201,72,0.08); transform: translateY(-4px); } /* BASE INFO BOX */ .info-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 16px; text-align: center; transition: none; } /* PRIZE BOX */ .prize-box:hover { background: rgba(247,201,72,0.08); transform: translateY(-3px); } /* PRIZE SHINE */ .prize-shiny { font-size: 52px; font-weight: 900; background: linear-gradient(90deg,#f7c948,#fff4b0,#f7c948); background-size: 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: shine 3s linear infinite; } @keyframes shine { 0% { background-position: 200% center; } 100% { background-position: -200% center; } } /* GRID */ .info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 18px; } /* PRIZE LIST FIXED */ .prize-list { margin-top: 10px; font-size: 14px; } .prize-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); } .prize-row span:first-child { color: var(--text); } .prize-row span:last-child { color: var(--gold); font-weight: 700; } .prize-row:last-child { border:none; } /* TERMS */ .dropdown-card { background: rgba(255,255,255,0.04); border-radius: 16px; margin-top: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); } .dropdown-trigger { padding: 14px; text-align: center; cursor: pointer; font-weight: 700; color: var(--gold); } /* RULES */ .rules-list { list-style: none; padding: 0; margin: 0; counter-reset: step; } .rules-list li { position: relative; padding: 10px 10px 10px 40px; margin-bottom: 8px; text-align: left; counter-increment: step; transition: 0.2s; } .rules-list li:hover { transform: translateX(3px); } .rules-list li::before { content: counter(step); position: absolute; left: 10px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; border-radius: 50%; background: rgba(247,201,72,0.15); border: 1px solid rgba(247,201,72,0.6); color: var(--gold); font-size: 11px; font-weight: 800; display:flex; align-items:center; justify-content:center; transition: 0.25s; } .rules-list li:hover::before { box-shadow: 0 0 8px rgba(247,201,72,0.6); transform: translateY(-50%) scale(1.1); } .center { text-align:center; } @media(max-width:900px){ .feature-grid, .info-grid { grid-template-columns:1fr; } } ⚑ Limited-Time Event Road to the Ring πŸ’ The Playoffs are here! πŸ€ Win a bet on any First Round Playoff game and share your Bet IDs below. Better odds will lead you towards top of the leaderboard! Bet Now Competition ends when first round is finished. How to Enter: Win a bet on any First Round Playoffs NBA game. Copy your Bet ID(s) after placing your bet. Submitted bets must be a minimum of 10x odds. Reply to this thread with your Bet ID(s) to enter. πŸ“‹ Requirements: πŸ€ Bets must be on any First Round Playoffs NBA game. πŸ’΅ Minimum bet amount: $2.00 (in any currency). πŸ“ˆ Minimum 10 odds (bets must be winning). πŸ’¬ Reply to this thread with your Bet ID(s). ❌ Cashed out bets are not allowed. βœ… Stake Shield / SGM bets are allowed. πŸ”’ Stake.com accounts only, Bronze VIP or above. πŸ† Prize Pool $3,000 TOTAL PRIZE POOL 1st Place$800 2nd Place$600 3rd Place$300 4th Place$200 5th Place$100 6th OnwardShare of $1,000 In the event of a tie, the higher bet amount wins. If still tied, the user who posted the bet(s) first will have an advantage. Terms & Conditions Bronze VIP account or above. KYC Level 2 verification required. Stake employees can not participate in official Stake.com forum challenges. This does not apply to moderators. Only Stake.com and official Stake.com mirror sites users will be eligible for the prize. Any player using multiple accounts will not be eligible for prizes. Stake reserves the right to disqualify any user due to promotion or account abuse, which may also result in a permanent ban. For payment, give us up to 72 hours from the end of the challenge. Winners will be contacted directly via support. Prizes will be distributed in the form of a coupon, which will also be posted as the final comment on this post.
  5. Hello @Chinnas18, Thanks for reaching out. Your points have been calculated correctly, and your current total stands at 40 points. Unfortunately, the additional 9 points could not be awarded because the match in question was officially cancelled. As a result, it does not count toward the final calculation. If you have any further questions or would like us to double-check anything else, feel free to let us know. We’re happy to help. Best regards, DragoslavP.
  6. Congratulations! You can claim prizes on the link below until the 12th of May! Top 5 winners: Results: CLAIM HERE Make sure you are logged in to the proper account. The full list can be seen here: https://pastebin.com/UWRJRx6a
  7. You can claim prizes on the link below until the 12th of May! CLAIM HERE Make sure you are logged in to the proper account. Wow. Congrats to the 20 winners!
  8. You can claim prizes on the link below until the 5th of May! CLAIM HERE Make sure you are logged in to the proper account. Winners Eligible/Non Eligible
  9. Week 3 (April 13th - April 20th ) πŸš€ Streak Rush πŸ“ˆ Hit the required multiplier on selected games and earn cash prizes. Keep your streak going to unlock bigger rewards each week. Requirements: Win a bet with 800x or higher multipliers on one of these slots. - Sweet Fiesta 1000 Enhanced RTP - Lab Leak - Lucky Mans Chamber - Punk Rocker 3 - Dollarsaurus Rex Minimum bet is 20c (0.20 USD). Tips & Terms & Conditions The bet must have been made after the commencement of this promotion. If you submit a post to this challenge and hit a higher multiplier than your first submission, you must edit your original post so we can get a better idea of how many unique participants there are. Anyone with multiple posts on this challenge by the time it expires will be disqualified. Stake employees cannot participate in official Stake.com forum challenges. This does not apply to moderators. For payment, give us up to 72 hours from the end of the promotion. Only level 2 KYC or higher verified users will be eligible for the prize. You can verify your Stake account here: https://stake.com/settings/verification Any player using multiple accounts will not be eligible for prizes. Stake reserves the right to disqualify any user due to promotion or account abuse, which may also result in a permanent ban. Only stake.com and official stake.com mirrors users will be eligible for the prize. Winners will be contacted directly via support. Prizes will be distributed in the form of a coupon, which will also be posted as the final comment on this post. Additional explanation : You must complete the challenge every week to keep your streak going Missing a week resets your streak back to the base prize. Your streak continues only if you win every week without skipping. Missing a week will end your streak. The next time you win, you’ll start again from the base reward Examples : Example 1: You win in Week 1, skip Week 2, and win again in Week 3 β†’ your streak ended in Week 2, so your Week 3 win only gives you the base prize. Example 2: You don’t play in Week 1, but win in Weeks 2, 3, and 4 β†’ you will get the base prize for Week 2, and your streak starts at Week 3 and continues from there. Example 3: You win all 4 weeks in a row β†’ you’ll earn a bonus reward for completing a perfect 4-week streak. Monthly Reset: Max streak: 4 weeks, then the monthly cycle resets At the start of each month, all streaks reset and everyone begins fresh from Week 1. Streak Prize: Base (starting point) - All winners get the base prize Streak 2 - Streak gives you an additional 20$ on top of the Base Prize Streak 3 - Streak gives you an additional 30$ on top of the Base Prize Streak 4 - Streak gives you an additional 80$ on top of the Base Prize Each week, the Base prize increases. Prize pool distribution week 3: Base prize of $40 for all eligible winners Up to 200 winners If more than 200 players qualify, those with higher multipliers will have priority How to Enter: Paste your bet ID (screenshot of the bet is optional). Post only one valid bet ID per user. Please ensure that your Stake username/ID is posted in your post so we can swiftly organize payment if you win. Bets must have been made after 13/04/2026 - (12 pm) UTC. Examples of valid bet IDs: - house:123456789000 - casino:123456789000
  10. ⚽Stake Matchday Madness⚽ - Round 33 - Man.City - Arsenal (England, Premier League. The match is scheduled for 19.04.2026.) Ends: 19/04/26 (15:30 pm) GMT Requirements: Guess correctly 7 questions that are posted on the poll below. To have a valid entry, fill out the form below. HERE Each category will be scored individually, and the total score will be calculated by adding them all together. Tips & Terms & Conditions: Points are awarded based on the number of points next to the questions; all correct answers will be added together. In case of the match being postponed, the promotion will also be postponed. Total Score: Your total score will be the sum of points from all 7 guesses. Fill out the form that's linked to this topic to be eligible for promotion. The user with the highest Total Score will be declared the winner. In case of a tie, the user who submitted their form first will have an advantage A Pastebin leaderboard will be featured as part of the promotion. If a player is not on the roster for that game due to injury or any other reason. In that case, only the predictions for selected players who participated in the match will be counted. Stake employees can not participate in official Stake.com forum challenges. This does not apply to moderators. For payment, give us up to 72 hours from the end of the promotion. Any player using multiple accounts will not be eligible for prizes. Stake reserves the right to disqualify any user due to promotion or account abuse, which may also result in a permanent ban. Do not post more than one comment/entry. You have to be one of the VIP members on our site ( at least the Bronze VIP level ). Only level 2 KYC or higher verified users will be eligible for the prize. You can verify your Stake account here: https://stake.com/settings/verification Only stake.com and official stake.com mirrors users will be eligible for the prize. Winners will be contacted directly via support. Prizes will be distributed in the form of a coupon, which will also be posted as the final comment on this post. Prize Pool distribution 1st place - $150 2nd place - $100 3rd place - $50 4th place - $50 5th place - $50 How to Enter Click on the "HERE" button. Fill out the form and good luck!
  11. ⚽Football Sunday Parlayβš½β€ Entry Period Ends: 13/04/26 @ (12:00 PM) GMT Requirements: Win a bet with at least x10 by betting on any Football matches this Sunday (12.04.2026) Minimum bet amount 2$ (in any currency) Highest multiplier wins. Tips & Terms & Conditions: Comment your bet ID on this topic to be eligible for promotion. You can bet on pre-match or live markets. Parlay needs to only have football matches played on Sunday, 12.04.2026. Voided, cancelled, half-loss, and half-win bets are not eligible for the challenge! Cashed-out/Stake Shield bets are not eligible for the challenge. Stake employees can not participate in official Stake.com forum challenges. This does not apply to moderators. For payment, give us up to 72 hours from the end of the promotion. Any player using multiple accounts will not be eligible for prizes. Do not post more than one comment/entry. You must be a VIP member on our site (at least the Bronze VIP level). Only level 2 KYC or higher verified users will be eligible for the prize. You can verify your Stake account here: https://stake.com/settings/verification Only stake.com and official stake.com mirrors users will be eligible for the prize. Winners will be contacted directly via support. Prizes will be distributed in the form of a coupon, which will also be posted as the final comment on this post. Prize Pool distribution 1st - 500$ 2nd - 250$ 3rd - 150$ 4th - 50$ 5th - 50$ All eligible users will split the remaining 500$. How to Enter Respond to this topic by posting your sports bet ID (screenshot of the bet is optional). One valid entry per user Examples of valid bet IDs: sport:123456789
  12. The winners of the 32nd round are: Correct Answers: CLAIM HERE Congratulations to all the winners!πŸ₯³ The list with all participants: https://pastebin.com/zi8BsZnJ
  13. Congratulations! You can claim prizes on the link below until the 10th of May! Top 5 winners: Results: CLAIM HERE Make sure you are logged in to the proper account. The full list can be seen here: https://pastebin.com/kVHHyiBx
  14. Hello @Shawwwwww The formula didn't calculate your last question for unknown reasons, therefore you should've had 53 points and ranked 6th with 15$ reward. You will be contacted shortly with the reward. Best regards, DragoslavP.
  15. Hello, No, since in SGM, if you bet the highest odds to lose, you will most likely lose more than 1 selection, and if that 1 selection that you lost is higher than 5x, your bet is not eligible. Best regards, DragoslavP.
  16. Hello @Shawwwwww Thanks for reaching out. Sadly, you only had 23 points, which is why you rank around 90th place. If you think the points were not calculated correctly i can manually send you all the questions and answers with the points calculations Best regards, DragoslavP.
  17. πŸŽ‰ Congratulations πŸŽ‰ Since no participant submitted a perfect March Madness prediction, the prize pool has been evenly split among all eligible users! You can claim prizes on the link below until the 6th of May! CLAIM HERE Make sure you are logged in to the proper account. Wow. Congrats to the 263 winners!
  18. Hello, Thanks for reaching out guys and thanks @MasterLewfor helping me I've had a few issues with results at first, but I fixed it, and the winners are announced on the forum normally. Best regards, DragoslavP.
  19. Hello @yusuf123987612 Thanks for reaching out. I'm sorry to hear that you've received that email, but there is nothing I can do, nor are we the team in charge of sending these emails; we don't have much information about such things, so we recommend that you contact our live support; maybe they will have more information. Best regards, DragoslavP.
  20. Hello, Thanks for reaching out. You can play whatever matches/sports you want as long as you follow the rules, and you need to have at least 6 matches or selections and your last match/selection odds cannot be higher then 5x. I've added this rule so we avoid slips that would look like this: -1.01x -1.01x -1.01x -1000x (losing match/selection) -1.01x -1.01x Total 1005x You can still bet SGM and normal slips If you have any more questions, please let me know. Best regards, DragoslavP.
  21. The winners of the 31th round are: Correct Answers: CLAIM HERE Congratulations to all the winners!πŸ₯³ The list with all participants: https://pastebin.com/6VcGy0JY
  22. Congratulations! You can claim prizes on the link below until the 6th of May! Top 5 winners: Results: CLAIM HERE Make sure you are logged in to the proper account. The full list can be seen here: https://pastebin.com/Vg7QetHF
  23. You can claim prizes on the link below until the 6th of May! CLAIM HERE Make sure you are logged in to the proper account. Wow. Congrats to the 43 winners!
  24. πŸŽ‰ Code for this week πŸŽ‰ aLaf1a9 Since nobody guessed correctly, we rained 100$ in the challenges chat! The new week is already out, good luck!
  25. πŸ‘Šβ€Punch your GuessesπŸ‘Šβ€ - UFC Fight Night: Prochazka vs. Ulberg- (UFC Kayesa Center, Miami, US. The event is scheduled for 12.04.2026.) Ends: 12/04/26 (00:00 am) GMT Requirements: Guess correctly 7 fights that are posted on the poll below. To have a valid entry, fill out the form below. HERE Each category will be scored individually, and the total score will be calculated by adding them all together. Tips & Terms & Conditions: Points are awarded based on the number of points next to the questions; all correct answers will be added together. In case of the match being postponed, the promotion will also be postponed. Total Score: Your total score will be the sum of points from all 7 guesses. Fill out the form that's linked to this topic to be eligible for promotion. The user with the highest Total Score will be declared the winner. In case of a tie, the user who submitted their form first will have an advantage If the organization changes the fighters of a certain match that's on the form, it will be voided. If a player is not on the roster for that game due to injury or any other reason. In that case, only the predictions for selected players who participated in the match will be counted. Stake employees can not participate in official Stake.com forum challenges. This does not apply to moderators. For payment, give us up to 72 hours from the end of the promotion. Any player using multiple accounts will not be eligible for prizes. Stake reserves the right to disqualify any user due to promotion or account abuse, which may also result in a permanent ban. Do not post more than one comment/entry. You have to be one of the VIP members on our site ( at least the Bronze VIP level ). Only level 2 KYC or higher verified users will be eligible for the prize. You can verify your Stake account here: https://stake.com/settings/verification Only stake.com and official stake.com mirrors users will be eligible for the prize. Winners will be contacted directly via support. Prizes will be distributed in the form of a coupon, which will also be posted as the final comment on this post. Prize Pool distribution 1st place - $150 2nd place - $100 3rd place - $50 4th place - $50 5th place - $50 How to Enter Click on the "HERE" button. Fill out the form and good luck!
×
×
  • Create New...

Important Information

Privacy Policy Terms of Use