Monopoly Go has brought a new Scottie’s Mansion event to celebrate Scottie, Mr. Monopoly’s trusted canine companion. A new Epic Myth season is currently underway in Scopely’s highly social title. The rewards for completing each milestone in this four-day event will help you complete this season’s objectives faster. Scottie’s Mansion event in Monopoly went live on September 13, 2023, and will run until September 17, 2023.
The new event brings plenty of Cash rewards, free dice rolls, sticker packs, and other rewards for the tycoons of the game. This article gathers every crucial piece of information regarding this new event in one place.
Scottie’s Mansion event in Monopoly Go brings some of the best rewards
There are 42 milestones in the Scottie’s Mansion event in Monopoly Go. You will need to gather the requisite points for each of them to collect the rewards.
Scottie’s Mansion milestones | Points | Rewards |
1 | 5 | Cash rewards |
2 | 10 | 10 dice rolls |
3 | 10 | Green Sticker Pack |
4 | 80 | 125 dice rolls |
5 | 15 | Cash rewards |
6 | 20 | Green Sticker Pack |
7 | 25 | Cash rewards |
8 | 150 | 220 dice rolls |
9 | 25 | Cash rewards |
10 | 30 | 15 Mins Rent Frenzy |
11 | 35 | Green Sticker Pack |
12 | 40 | Cash rewards |
13 | 425 | Cash rewards |
14 | 45 | Cash rewards |
15 | 50 | Orange Sticker Pack |
16 | 55 | Cash rewards |
17 | 800 | 900 dice rolls |
18 | 60 | Cash rewards |
19 | 70 | Pink Sticker Pack |
20 | 80 | Cash rewards |
21 | 1.2K | 1.3K dice rolls |
22 | 100 | 15 Mins High Roller |
23 | 120 | Orange Sticker Pack |
24 | 130 | Cash rewards |
25 | 1.8K | 1.6K dice rolls |
26 | 150 | Cash rewards |
27 | 250 | Blue Sticker Pack |
28 | 275 | 200 dice rolls |
29 | 300 | Cash Boost |
30 | 2.5k | Scottie Sleeping Token |
31 | 300 | 225 dice rolls |
32 | 400 | Blue Sticker Pack |
33 | 500 | Cash rewards |
34 | 4.5K | 4K dice rolls |
35 | 600 | Purple Sticker Pack |
36 | 700 | 20 Min Cash Grab |
37 | 800 | 500 dice rolls |
38 | 3.5K | Cash rewards |
39 | 900 | 700 dice rolls |
40 | 1K | Gold Blue Sticker Pack |
41 | 1.1K | Cash rewards |
42 | 6.5K | Gold Blue Sticker Pack and 6.5K dice rolls |
The Sticker Packs you gather from the ‘Rewards’ section will fetch you stickers. Gathering new ones will help you complete different albums faster and collect the rewards before the Epic Myths season ends. You can trade extra stickers with your friends to earn more exciting prizes.
How to win the Scottie’s Mansion event
You need to gather points (Dog Collars) by traveling around your Monopoly Go Board and completing milestones. These collars are on different tiles on your board. Each time you land on these tiles, you will earn two points. You will also get rewards for collecting the required points to complete a milestone.
However, completing the milestones with more than 1,000 requisite points will be challenging. You can use high rollers like x5 or x10 to collect 10 or 20 points at once, but it will also take away the same number of dice rolls in return.
Since dice are the scarcest assets in the game, try to capitalize on the chances of getting free dice rolls.
The dog collars are scattered around the board in this event. Thus, it will be harder to complete it than other events that require you to land on some specific tiles to accrue points. Saving your dice rolls will improve your chances of winning the Scottie’s Mansion event in Monopoly Go.
You can also check out this guide on how to delete friends in the game.
More from Sportskeeda
" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1667361, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1667361); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1667361) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1667361) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();