-
Posts
529 -
Joined
-
Days Won
31
Everything posted by DragoslavP
-
The winners of the 39th round are: Correct Answers: CLAIM HERE Congratulations to all the winners!🥳 The list with all participants: https://pastebin.com/s2ndJrGz Edit: There was a mistake in the calculation where Montero’s correct Pts+As answer was counted as 26 instead of 24. We’ve now recounted the results using the correct answer, and as a result, we have a few new winners.
-
🏀[EuroLeague] Points Battle | Semi Finals | 🏀
DragoslavP replied to DragoslavP's topic in Past Events
Congratulations! You can claim prizes on the link below until the 21st of June! 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/3cAMgQPj -
: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; position: relative; } .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); z-index: 10; } .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 */ .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; } .center { text-align:center; } @media(max-width:900px){ .feature-grid, .info-grid { grid-template-columns:1fr; } } ⚡ Limited-Time Event 🏆 EuroLeague Final Four - Lucky Draw 🏆 The Final Four is finally here! Place a bet on any EuroLeague Final Four matches and share your Bet IDs below. Bet Now Competition ends: 25/05/2026 - 12:00pm GMT How to Enter: Place a bet on any EuroLeague Final Four match on Stake.com. Submitted bets must be a minimum of 10x odds. Copy your Bet ID(s) after placing your bet. Reply to this thread with your Bet ID(s) to enter. 📋 Requirements: 🏀 Bets must be on EuroLeague Final Four games. 💵 Minimum bet amount: $5.00. 📈 Minimum 10x odds. 💬 Reply to this thread with your Bet ID(s). 🔒 Bronze VIP or above & KYC Level 2. 💡 Only one bet allowed; others will be removed. 🏆 Prize Pool $2,000 TOTAL PRIZE POOL 10 users$200 Each SelectionRandom Draw Winners will be selected at random from all eligible entries that meet the requirements. Terms & Conditions Bronze VIP account or above on Stake.com is required. KYC Level 2 verification is required for all participants. Only one Stake account per user. Multi-accounting results in disqualification. Accounts must have no restrictions or exclusions to receive prizes. Stake employees are not eligible to participate. Stake reserves the right to amend or cancel the competition at any time. Prizes will be delivered within 72 hours of the competition ending. Winners will have their username displayed with a prize claim link.
-
Hello @Chinnas18 Sadly, you are not eligible since you placed your guesses after the matchees finished. Good luck in the next one! Best regards, DragoslavP.
-
The winners of the 37th round are: Correct Answers: CLAIM HERE Congratulations to all the winners!🥳 The list with all participants: https://pastebin.com/ssXGL7SL
-
🎉 Congratulations! 🎉 You can claim prizes on the link below until June 17th! Place Username Prize 1 petikemas $800 2 SitTheif $600 3 Hd0g $300 2 Honka777 $200 3 apo1337 $100 CLAIM HERE View the full list HERE
-
You can claim prizes on the link below until the 17th of June! CLAIM HERE Make sure you are logged in to the proper account. Wow. Congrats to the 36 winners!
-
: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 Conference Finals Playoff game and share your Bet IDs below. Better odds will lead you towards the top of the leaderboard! Bet Now Competition ends when first round is finished. How to Enter: Win a bet on any Conference Finals 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 Conference Finals 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.
-
🎉 Congratulations 🎉 You are the official winner of the Behind the Bet 🧠🧩 challenge! Winner @KrabbyPattys CLAIM Please make sure you are logged into the correct account before claiming your reward.
-
.sf-wrap{ max-width:1000px; margin:20px auto; font-family:Arial,Helvetica,sans-serif; color:#f5f7fb; background: radial-gradient(circle at 20% 10%, rgba(120,200,255,0.10), transparent 40%), radial-gradient(circle at 80% 20%, rgba(255,220,120,0.08), transparent 45%), radial-gradient(circle at 50% 100%, rgba(180,140,255,0.08), transparent 55%), linear-gradient(145deg, #0f1722 0%, #121c2a 45%, #0e1520 100%); border:1px solid rgba(255,255,255,0.14); border-radius:26px; overflow:hidden; box-shadow:0 22px 60px rgba(0,0,0,0.35); position:relative; backdrop-filter: blur(10px); } .sf-wrap::before{ content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(circle at 85% 15%, rgba(120,180,255,0.10), transparent 45%), radial-gradient(circle at 20% 80%, rgba(255,210,120,0.07), transparent 50%), radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04), transparent 60%); } .sf-wrap::after{ content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at center, transparent 55%, rgba(0,0,0,0.25) 100%); } .sf-hero{ position:relative; padding:34px 28px 28px; background: transparent; } .sf-topbar{ display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:14px; flex-wrap:wrap; } .sf-title{ font-size:40px; line-height:1.08; font-weight:900; color:#ffffff; margin:0 0 10px; text-shadow:0 4px 18px rgba(0,0,0,0.25); } .sf-sub{ max-width:760px; font-size:17px; line-height:1.65; color:#dbe4ff; margin-bottom:22px; } .sf-grid-top{ display:flex; flex-wrap:wrap; gap:12px; } .sf-chip{ flex:1 1 180px; min-width:180px; padding:15px 16px; border-radius:18px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.10); box-shadow:0 6px 16px rgba(0,0,0,0.14); transition:all 0.25s ease; } .sf-chip-label{ font-size:11px; text-transform:uppercase; letter-spacing:1px; color:#cbd5e8; margin-bottom:6px; } .sf-chip-value{ font-size:19px; font-weight:800; color:#ffffff; } .sf-btns{ margin-top:20px; display:flex; flex-wrap:wrap; gap:12px; justify-content:center; position:relative; padding-bottom:14px; } .sf-btns::after{ content:""; position:absolute; left:20%; right:20%; bottom:-10px; height:2px; background:linear-gradient(90deg,transparent,#f7c948,transparent); opacity:0.55; } .sf-btn{ display:inline-block; padding:14px 20px; border-radius:14px; font-size:14px; font-weight:800; letter-spacing:0.4px; transition:all 0.25s ease; text-decoration:none !important; } .sf-btn-primary{ color:#1a1a1a !important; background:linear-gradient(135deg,#8c6a00 0%,#d4af37 40%,#ffd700 60%,#b8860b 100%); border:1px solid rgba(255,215,0,0.75); box-shadow:0 14px 28px rgba(212,175,55,0.35), inset 0 1px 0 rgba(255,255,255,0.25); text-shadow:0 1px 0 rgba(255,255,255,0.35); position:relative; overflow:hidden; } .sf-btn-primary:hover{ transform:translateY(-3px) scale(1.08); box-shadow:0 18px 36px rgba(212,175,55,0.45); } .sf-btn-primary::after{ content:""; position:absolute; top:-60%; left:-70%; width:60%; height:200%; background:linear-gradient(120deg,transparent,rgba(255,255,255,0.35),transparent); transform:rotate(25deg); transition:all 0.6s ease; } .sf-btn-primary:hover::after{ left:120%; } .sf-main{ padding:26px; } .sf-columns{ display:flex; flex-wrap:wrap; gap:20px; align-items:stretch; } .sf-left, .sf-right{ flex:1 1 48%; min-width:320px; display:flex; flex-direction:column; } .sf-card{ background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.10); border-radius:22px; padding:22px; box-shadow:0 10px 24px rgba(0,0,0,0.18); margin-bottom:20px; backdrop-filter: blur(12px); position:relative; transition:all 0.25s ease; } .sf-left .sf-card:last-child, .sf-right .sf-card:last-child{ margin-bottom:0; margin-top:auto; } .sf-card::before{ content:""; position:absolute; inset:0; border-radius:22px; pointer-events:none; background:linear-gradient(135deg, rgba(247,201,72,0.04), transparent 45%, rgba(120,160,255,0.03)); } .sf-card h3{ margin:0 0 14px; font-size:24px; color:#ffffff; } .dropdown-card{ margin-top:20px; } .sf-main > .sf-card:last-child{ margin-top:28px; } .dropdown-trigger{ display:flex; align-items:center; justify-content:center; text-align:center; font-weight:900; font-size:18px; cursor:pointer; color:#ffffff; margin-bottom:0; } .rules-list{ list-style:none; padding:0; margin:0; counter-reset: rule; display:flex; flex-direction:column; gap:10px; } .rules-list li{ position:relative; padding:14px 16px 14px 56px; border-radius:14px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08); transition:all 0.25s ease; color:#dbe4ff; font-size:14px; line-height:1.6; } .rules-list li::before{ counter-increment: rule; content: counter(rule); position:absolute; left:14px; top:50%; transform:translateY(-50%); width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:900; color:#1a1a1a; background:linear-gradient(135deg,#f7c948,#ffdd7a); box-shadow:0 6px 14px rgba(247,201,72,0.18); } .sf-card:hover{ transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.35); border: 1px solid rgba(247,201,72,0.45); } .rules-list li:hover{ transform: translateX(6px); background: rgba(247,201,72,0.06); border: 1px solid rgba(247,201,72,0.35); color: #ffffff; box-shadow: 0 10px 24px rgba(0,0,0,0.25); } ⛹️Stake Matchday Madness⛹️ Round 39 | Valencia - Real Madrid (Europe, Euroleague. The match is scheduled for 22.05.2026.) Ends: 22/05/26 (18:00 pm) GMT Requirements Guess correctly 7 questions that are posted on the poll below. Each category will be scored individually, and the total score will be calculated by adding them all together. To have a valid entry, fill out the form below. HERE Prize Pool 1st place$150 2nd place$100 3rd place$50 4th place$50 5th place$50 In case of a tie, the user who submitted their form first will have an advantage. Additional Information 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. 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. A Pastebin leaderboard will be featured as part of the promotion. Terms & Conditions — click to expand Only level 2 KYC or higher verified users will be eligible for the prize. Only Stake.com and official Stake.com mirrors users will be eligible for the prize. Stake employees can not participate in official Stake.com forum challenges. This does not apply to moderators. 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 promotion. 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.
-
🏀POINTS BATTLE🏀 🏆 ROUND 38🏆 Ends: 22/04/25 @ (15 pm) GMT Requirements: Guess the total number of points for each of the 7 selected players. This refers to the Semi-Final matches of the Turkish Airlines Euroleague Final Four. The matches are scheduled for May 22nd To have a valid entry, fill out the form below. HERE Tips & Terms & Conditions: Points are awarded based on how close your predictions are to the actual points for each player. Exact match: 150 points Within 1 point: 100 points Within 2 points: 75 points Within 3 points: 50 points Within 4 points: 30 points From 5 to 10 points: 15 points From 11 to 20 points: 10 points From 21 to 30 points: 5 points Total Score: Your total score will be the sum of points from all 7 players. 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 entry first will have the 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 Round 38 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. 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 - $300 2nd place - $200 3rd place - $100 4th place - $100 5th place - $100 How to Enter Click on the "HERE" button. Fill out the form and good luck!
-
: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); } .section-title { color: var(--gold); font-size: 24px; font-weight: 700; margin-bottom: 10px; } .center { text-align: center; } .muted { color: var(--muted); } .section-divider { margin: 28px auto 18px; width: 60%; height: 2px; background: linear-gradient(90deg, transparent, rgba(247,201,72,0.6), transparent); border-radius: 2px; } .slots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 14px; } .slot-card { display: block; color: #fff; padding: 14px; border-radius: 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); text-align: center; font-weight: 600; font-size: 16px; text-decoration: none !important; transition: 0.18s ease; } .slot-card:hover { transform: translateY(-2px) scale(1.02); background: rgba(247,201,72,0.08); border-color: rgba(247,201,72,0.6); } .info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 18px; } .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; font-weight: 600; font-size: 15px; transition: 0.18s ease; } .info-box:hover { transform: translateY(-2px) scale(1.02); background: rgba(247,201,72,0.08); border-color: rgba(247,201,72,0.6); } /* normalize text */ .info-box ul, .info-box p { font-weight: 400; margin: 6px 0; line-height: 1.5; } /* ✅ TERMS LIST NEW STYLE */ .rules-list { list-style: none; padding: 0; margin: 0; counter-reset: step; } .rules-list li { position: relative; padding: 12px 12px 12px 48px; margin-bottom: 10px; text-align: left; transition: 0.2s ease; border-radius: 10px; } .rules-list li:hover { transform: translateX(4px); background: rgba(247,201,72,0.08); } /* yellow circle + black number */ .rules-list li::before { content: counter(step); counter-increment: step; position: absolute; left: 10px; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; border-radius: 50%; background: var(--gold); color: #000; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; } .dropdown-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; margin-top: 18px; width: 100%; overflow: hidden; } .dropdown-trigger { padding: 10px; text-align: center; cursor: pointer; font-weight: 700; color: var(--gold); } 🚀 Streak Rush 📈 Week 1 (May 18th - May 25th) Hit the required multiplier on selected games and earn cash prizes. Keep your streak going to unlock bigger rewards each week. The Challenge: Win a bet with 300x or higher multipliers on one of these slots: Minimum bet amount: $0.20 USD (in any currency). Gates of Heaven 1000 Enhanced RTP Ham Busters CTRL ALT DELETE Bone and Bullets 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 reset. 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 (Week 3) Base prize of $15 for all eligible winners. Up to 200 winners. If more than 200 players qualify, those with higher multipliers will have priority. Terms & Conditions Bets must have been made after 18/05/2026 - (12 PM) UTC. Feel free to edit your post if you get a higher multiplier. Only level 2 KYC or higher verified users will be eligible for the prize. Stake employees cannot participate in official Stake.com forum challenges. This does not apply to moderators. Only Stake.com and official Stake.com mirrors 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 promotion. 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.
-
$3,000 All roads lead to Athens | EuroLeague
DragoslavP replied to DragoslavP's topic in Past Events
🎉 Congratulations! 🎉 You can claim prizes on the link below until June 12nd! Place Username Prize 1 こまる $800 2 Herrycainengs $600 3 Gambitdeladame $300 2 alexonmooon $200 3 molasqw $100 CLAIM HERE View the full list HERE -
.sf-wrap{ max-width:1000px; margin:20px auto; font-family:Arial,Helvetica,sans-serif; color:#f5f7fb; background: radial-gradient(circle at 20% 10%, rgba(120,200,255,0.10), transparent 40%), radial-gradient(circle at 80% 20%, rgba(255,220,120,0.08), transparent 45%), radial-gradient(circle at 50% 100%, rgba(180,140,255,0.08), transparent 55%), linear-gradient(145deg, #0f1722 0%, #121c2a 45%, #0e1520 100%); border:1px solid rgba(255,255,255,0.14); border-radius:26px; overflow:hidden; box-shadow:0 22px 60px rgba(0,0,0,0.35); position:relative; backdrop-filter: blur(10px); } .sf-wrap::before{ content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(circle at 85% 15%, rgba(120,180,255,0.10), transparent 45%), radial-gradient(circle at 20% 80%, rgba(255,210,120,0.07), transparent 50%), radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04), transparent 60%); } .sf-wrap::after{ content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at center, transparent 55%, rgba(0,0,0,0.25) 100%); } .sf-hero{ position:relative; padding:34px 28px 28px; background: transparent; } .sf-topbar{ display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:14px; flex-wrap:wrap; } .sf-title{ font-size:40px; line-height:1.08; font-weight:900; color:#ffffff; margin:0 0 10px; text-shadow:0 4px 18px rgba(0,0,0,0.25); } .sf-sub{ max-width:760px; font-size:17px; line-height:1.65; color:#dbe4ff; margin-bottom:22px; } .sf-grid-top{ display:flex; flex-wrap:wrap; gap:12px; } .sf-chip{ flex:1 1 180px; min-width:180px; padding:15px 16px; border-radius:18px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.10); box-shadow:0 6px 16px rgba(0,0,0,0.14); transition:all 0.25s ease; } .sf-chip-label{ font-size:11px; text-transform:uppercase; letter-spacing:1px; color:#cbd5e8; margin-bottom:6px; } .sf-chip-value{ font-size:19px; font-weight:800; color:#ffffff; } .sf-btns{ margin-top:20px; display:flex; flex-wrap:wrap; gap:12px; justify-content:center; position:relative; padding-bottom:14px; } .sf-btns::after{ content:""; position:absolute; left:20%; right:20%; bottom:-10px; height:2px; background:linear-gradient(90deg,transparent,#f7c948,transparent); opacity:0.55; } .sf-btn{ display:inline-block; padding:14px 20px; border-radius:14px; font-size:14px; font-weight:800; letter-spacing:0.4px; transition:all 0.25s ease; text-decoration:none !important; } .sf-btn-primary{ color:#1a1a1a !important; background:linear-gradient(135deg,#8c6a00 0%,#d4af37 40%,#ffd700 60%,#b8860b 100%); border:1px solid rgba(255,215,0,0.75); box-shadow:0 14px 28px rgba(212,175,55,0.35), inset 0 1px 0 rgba(255,255,255,0.25); text-shadow:0 1px 0 rgba(255,255,255,0.35); position:relative; overflow:hidden; } .sf-btn-primary:hover{ transform:translateY(-3px) scale(1.08); box-shadow:0 18px 36px rgba(212,175,55,0.45); } .sf-btn-primary::after{ content:""; position:absolute; top:-60%; left:-70%; width:60%; height:200%; background:linear-gradient(120deg,transparent,rgba(255,255,255,0.35),transparent); transform:rotate(25deg); transition:all 0.6s ease; } .sf-btn-primary:hover::after{ left:120%; } .sf-main{ padding:26px; } .sf-columns{ display:flex; flex-wrap:wrap; gap:20px; align-items:stretch; } .sf-left, .sf-right{ flex:1 1 48%; min-width:320px; display:flex; flex-direction:column; } .sf-card{ background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.10); border-radius:22px; padding:22px; box-shadow:0 10px 24px rgba(0,0,0,0.18); margin-bottom:20px; backdrop-filter: blur(12px); position:relative; transition:all 0.25s ease; } .sf-left .sf-card:last-child, .sf-right .sf-card:last-child{ margin-bottom:0; margin-top:auto; } .sf-card::before{ content:""; position:absolute; inset:0; border-radius:22px; pointer-events:none; background:linear-gradient(135deg, rgba(247,201,72,0.04), transparent 45%, rgba(120,160,255,0.03)); } .sf-card h3{ margin:0 0 14px; font-size:24px; color:#ffffff; } .dropdown-card{ margin-top:20px; } .sf-main > .sf-card:last-child{ margin-top:28px; } .dropdown-trigger{ display:flex; align-items:center; justify-content:center; text-align:center; font-weight:900; font-size:18px; cursor:pointer; color:#ffffff; margin-bottom:0; } .rules-list{ list-style:none; padding:0; margin:0; counter-reset: rule; display:flex; flex-direction:column; gap:10px; } .rules-list li{ position:relative; padding:14px 16px 14px 56px; border-radius:14px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08); transition:all 0.25s ease; color:#dbe4ff; font-size:14px; line-height:1.6; } .rules-list li::before{ counter-increment: rule; content: counter(rule); position:absolute; left:14px; top:50%; transform:translateY(-50%); width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:900; color:#1a1a1a; background:linear-gradient(135deg,#f7c948,#ffdd7a); box-shadow:0 6px 14px rgba(247,201,72,0.18); } .sf-card:hover{ transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.35); border: 1px solid rgba(247,201,72,0.45); } .rules-list li:hover{ transform: translateX(6px); background: rgba(247,201,72,0.06); border: 1px solid rgba(247,201,72,0.35); color: #ffffff; box-shadow: 0 10px 24px rgba(0,0,0,0.25); } ⚽Stake Matchday Madness⚽ Round 36 | Newcastle - West Ham (England, Premier League. The match is scheduled for 17.05.2026.) Ends: 17/05/26 (16:30 pm) GMT Requirements Guess correctly 7 questions that are posted on the poll below. Each category will be scored individually, and the total score will be calculated by adding them all together. To have a valid entry, fill out the form below. HERE Prize Pool 1st place$150 2nd place$100 3rd place$50 4th place$50 5th place$50 In case of a tie, the user who submitted their form first will have an advantage. Additional Information 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. 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. A Pastebin leaderboard will be featured as part of the promotion. Terms & Conditions — click to expand Only level 2 KYC or higher verified users will be eligible for the prize. Only Stake.com and official Stake.com mirrors users will be eligible for the prize. Stake employees can not participate in official Stake.com forum challenges. This does not apply to moderators. 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 promotion. 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.
-
Congratulations! You can claim prizes on the link below until the 6th of June! 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/b1az5GMH
-
Hello @KaiZidan Thanks for reaching out and raising these concerns. We usually lock the topic before the event starts, and sometimes if it slips, we don't do i still look for timers when everyone submits their bet id and as MasterLew said, you can check the whole list after the promotion ends, and if you scroll to the buttom you can see users disqualified for late entry. Best regards, DragoslavP.
-
: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); } .section-title { color: var(--gold); font-size: 24px; font-weight: 700; margin-bottom: 10px; } .center { text-align: center; } .muted { color: var(--muted); } .section-divider { margin: 28px auto 18px; width: 60%; height: 2px; background: linear-gradient(90deg, transparent, rgba(247,201,72,0.6), transparent); border-radius: 2px; } .slots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 14px; } .slot-card { display: block; color: #fff; padding: 14px; border-radius: 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); text-align: center; font-weight: 600; font-size: 16px; text-decoration: none !important; transition: 0.18s ease; } .slot-card:hover { transform: translateY(-2px) scale(1.02); background: rgba(247,201,72,0.08); border-color: rgba(247,201,72,0.6); } .info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 18px; } .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; font-weight: 600; font-size: 15px; transition: 0.18s ease; } .info-box:hover { transform: translateY(-2px) scale(1.02); background: rgba(247,201,72,0.08); border-color: rgba(247,201,72,0.6); } /* normalize text */ .info-box ul, .info-box p { font-weight: 400; margin: 6px 0; line-height: 1.5; } /* ✅ TERMS LIST NEW STYLE */ .rules-list { list-style: none; padding: 0; margin: 0; counter-reset: step; } .rules-list li { position: relative; padding: 12px 12px 12px 48px; margin-bottom: 10px; text-align: left; transition: 0.2s ease; border-radius: 10px; } .rules-list li:hover { transform: translateX(4px); background: rgba(247,201,72,0.08); } /* yellow circle + black number */ .rules-list li::before { content: counter(step); counter-increment: step; position: absolute; left: 10px; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; border-radius: 50%; background: var(--gold); color: #000; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; } .dropdown-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; margin-top: 18px; width: 100%; overflow: hidden; } .dropdown-trigger { padding: 10px; text-align: center; cursor: pointer; font-weight: 700; color: var(--gold); } 🚀 Streak Rush 📈 Week 4 (May 11th - May 18th) Hit the required multiplier on selected games and earn cash prizes. Keep your streak going to unlock bigger rewards each week. The Challenge: Win a bet with 800x or higher multipliers on one of these slots: Minimum bet amount: $0.20 USD (in any currency). Gates of Athena Lazy Knight Wizard 2000 Mr. Null's Wicked Wares 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 reset. 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 (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. Terms & Conditions Bets must have been made after 11/05/2026 - (12 PM) UTC. Feel free to edit your post if you get a higher multiplier. Only level 2 KYC or higher verified users will be eligible for the prize. Stake employees cannot participate in official Stake.com forum challenges. This does not apply to moderators. Only Stake.com and official Stake.com mirrors 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 promotion. 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.
-
The winners of the 36th round are: Correct Answers: CLAIM HERE Congratulations to all the winners!🥳 The list with all participants: https://pastebin.com/UDD7qN8J
-
🎉 Congratulations 🎉 You are the official winner of the Behind the Bet 🧠🧩 challenge! Winner @MajkiMajk0666 CLAIM Please make sure you are logged into the correct account before claiming your reward.
-
Hey @Scoobydoo789 You don't have to be the winner of the first round to play the second round. Best regards, DragoslavP.
-
🧠 Behind the Bet 🧩 ( May 10th ) This topic unlocks on Sunday at 12 pm UTC. Until then… collect every clue and stay patient. The whole Sunday, there will be clues dropped randomly in the Challenges chat. You need one single-digit number/letter for each riddle/clue dropped by our CMs/Mods. The user who posts a 7-letter/number code first will receive a reward! Posts that are not final code will be hidden (you cannot post 6-letter/numbers code and just edit when u have the 7th) Clues will have a number before them so that you know for what letter/number that clue is (1. - for the first letter/number, 2. - for the second, etc.) 🥇 First correct answer: $100 If there is no winner at the end of the week, 1 extra ⛈️ will appear. Only one entry per user is allowed. Good luck!🍀
-
Phantom Pulse Jjgoatt $12,783.97 / house:473386825994 droz x20000 / house:473305231810 Cash Stacks 8816695 $150,798.65 / house:473223400011 EmmaDelu x25000 / house:473623758824 Bar of Fate MarryBlake $10,640.00 / house:472139253556 Ahmed13209 x1076 / house:473371639384 Coral Cove Руу $32,373.72 / house:473630167394 Newpapaarg x10000 / house:473510287354 Pyramid Scheme Gambleman33 $97,907.00 / house:473920478583 GamblingMan246 x6026.4 / house:472174276653 3 Builder Piggies Nickers1808 $13,200.00 / house:472561744910 Nickers1808 x3470 / house:471890169071 Kraken Bay nest77 $6,580.00 / house:473590274020 Sukru019 x2714 / house:472261575227 Gold Luck: Coins of Cleo Basketball11 $1,644.00 / house:473040972327 daredddd x426 / house:472516171145 Valhalla 1000 doom13 $61,398.00 / house:473920375058 cur45 x10000 / house:473081109892 Ninja Starz theoutlaw $19,279.32 / house:471960574444 droz x9856.8 / house:473167843988 Headhunter AbdullahQ812 $9,019.05 / house:472405853191 Kirara10 x1753.5 / house:472744287943 Sour Rush MAmin0 $17,850.00 / house:473557288514 poef42 x5381.55 / house:473367065763 Pirates Revange 吕小梅 $23,130.00 / house:473440948330 droz x11921.7 / house:473133120814 Bison Fire Charge pico123456 $2,553.77 / house:472952280817 UGLT x2041.5 / house:472998259018 Sweet Empire Ato201 $16,304.53 / house:472931275868 Sabrosa10 x6745.1 / house:473431949798
-
I didn't know about all these things how to fix it
DragoslavP replied to Shawwwwww's topic in General
Hello @Shawwwwww Thanks for reaching out. Users are not permitted to make their own giveaways, promotions, or similar activities. Additionally, asking other users to share their usernames in order to receive tips, rewards, or any form of compensation is not allowed. Best regards, DragoslavP. -
Hello @Sabrosa10 Thanks for reaching out. Conquer the Casino April/May 24 - 01 has been paid, thanks for your patience and sorry for the delay Best regards, DragoslavP.
-
No leaderboard for Conquer the Casino?
DragoslavP replied to Approximate's topic in Casino Discussion
Hello @Approximate Thanks for reaching out. We did not forget about Conquer The Casino 😅| We've had an issue with paying out last week, so we didn't wanna upload a new leaderboard before we paid out for last week to avoid confusion between users Best regards, DragoslavP.