With gamers having relished space in Galactic Adventures, it is time for them to experience the Moon with the Moon Walkers event in Monopoly Go. Kicked off on September 19, 2023, it will continue until September 22, 2023, and include space-themed adventures. You can earn many amazing rewards and conquer the Moon by completing the milestones in this event.
The Moon Walkers event in Monopoly Go presents 49 milestones, and completing each will earn you free dice rolls, cash rewards, and more.
Moon Walkers event in Monopoly Go: List of milestones and rewards
This article lists all the milestones in the Moon Walkers event, along with the points required to complete them and rewards.
Moonwalkers event milestones | Points Required | Rewards |
1 | 5 | 10 dice rolls |
2 | 5 | Cash Rewards |
3 | 10 | Green Sticker Packs |
4 | 10 | Cash rewards |
5 | 65 | 75 dice rolls |
6 | 15 | Cash Rewards |
7 | 20 | Cash Rewards |
8 | 20 | Green Sticker pack |
9 | 25 | Cash Rewards |
10 | 180 | 240 dice rolls |
11 | 25 | Cash Rewards |
12 | 30 | 10 Mins Cash Grab |
13 | 35 | Green Sticker Pack |
14 | 40 | Cash Rewards |
15 | 350 | 480 dice rolls |
16 | 45 | Cash Rewards |
17 | 60 | Yellow Pack |
18 | 100 | 120 dice rolls |
19 | 70 | Cash Rewards |
20 | 600 | Shield Skin |
21 | 105 | 125 dice rolls |
22 | 100 | Pink Sticker Pack |
23 | 110 | Cash Rewards |
24 | 120 | Cash Rewards |
25 | 1K | 1.2K dice rolls |
26 | 130 | 15 Mins High Roller |
27 | 140 | Cash Rewards |
28 | 150 | Cash Rewards |
29 | 160 | Yellow Sticker Pack |
30 | 1.6K | 1.6K dice rolls |
31 | 175 | Cash Rewards |
32 | 250 | Blue Sticker Pack |
33 | 300 | Cash Rewards |
34 | 280 | Cash Rewards |
35 | 2K | 1.85 dice rolls |
36 | 400 | 5 Min Cash Boost |
37 | 600 | Blue Sticker Pack |
38 | 700 | 500 dice rolls |
39 | 800 | Cash Rewards |
40 | 3K | 2.7K dice rolls |
41 | 900 | Purple Sticker Pack |
42 | 1K | 25 Mins Rent Frenzy |
43 | 1.1K | Cash Rewards |
44 | 1.2K | 950 dice rolls |
45 | 2.5K | Cash Rewards |
46 | 1.2K | Cash Rewards |
47 | 1.4K | Golden Blue Sticker Pack |
48 | 1.5K | Cash Rewards |
49 | 6K | Golden Blue Sticker Pack and 7K dice rolls |
Apart from this, there is a season-long sticker collection event underway. One can get more amazing prizes by completing each sticker album in that event. The Sticker Packs mentioned in the ‘Rewards’ section can help you complete more albums faster.
You can also trade extra stickers with friends to help them or conduct an exchange to bolster your collection.
Moon Walkers event in Monopoly Go: How to win
The Moon Walkers event requires you to land on corner tiles of the board, i.e., Go, Free Parking, and the two Jail tiles. Each landing will earn you four points. You will get the rewards after accruing the requisite points to complete a milestone.
Since landing on the corner tiles is an uphill task, you are advised to use higher multipliers to gather as many points as possible. However, using these multipliers deducts the same number of dice from your hand. For example, rolling a dice with a x10 multiplier will earn you 40 points at once, but deduct 10 dice from your tally.
Since dice are crucial assets, you must learn to get free dice in the game and hoard them for such events.
Since launching in April 2023, Monopoly Go has gathered a vast fanbase and successfully popularized the board game with its playful mechanics and exhilarating events. Feel free to check out our other guides about 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": 1674904, "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(1674904); 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(1674904) >= 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(1674904) .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 }); })();