Tournament schedule, all rewards, and more

The new Candy Corn Challenge in Monopoly Go is a tournament with many rewards for the tycoons. This 24-hour-long tournament that went live on October 28, 2023, requires you to collect tokens by performing Shutdowns and Bank Heists. Gather more points to rank higher and win lucrative in-game rewards like dice rolls, tokens for the ongoing partner's event, and more.

The community is trying to find the rewards to set an achievable and beneficial ranking for them. This article provides everything you need to know about the Candy Corn Challenge in Monopoly Go.


fortnite-promotional-banner

Candy Corn Challenge in Monopoly Go: Schedule and rewards

All rewards in the latest tournament (Image via Scopely)
All rewards in the latest tournament (Image via Scopely)

The Candy Corn Challenge in Monopoly Go will be live from October 28 to October 29, 2023. Here is the list of rewards you can get from the tournament:

  • Rank 1: Cash Rewards, 1.5K free dice rolls, 400 Spooky Car Partners event tokens, Exclusive Ghost tokens, and a Golden Purple Sticker Pack.
  • Rank 2: Cash Rewards, 750 free dice rolls, 400 Spooky Car Partners event tokens, Ghost token, Golden Blue Sticker Pack.
  • Rank 3: Cash Rewards, 600 free dice rolls, 400 Spooky Car Partners event tokens, Ghost token, Golden Pink Sticker Pack.
  • Rank 4: Cash Rewards, 500 free dice rolls, 400 Spooky Car Partners event tokens, Ghost token, Golden Yellow Sticker Pack.
  • Rank 5: Cash Rewards, 400 free dice rolls, 400 Spooky Car Partners event tokens, Ghost token, Pink Sticker Pack.
  • Rank 6: Cash Rewards, 350 free dice rolls, 350 Spooky Car Partners event tokens.
  • Rank 7: Cash Rewards, 300 free dice rolls, 350 Spooky Car Partners event tokens.
  • Rank 8: Cash Rewards, 250 free dice rolls, 350 Spooky Car Partners event tokens.
  • Rank 9 – 10: Cash Rewards, 200 free dice rolls, 350 Spooky Car Partners event tokens.
  • Rank 11 – 15: Cash Rewards, 50 dice rolls, 350 Spooky Car Partners event tokens.
  • Rank 16 – 25: Cash Rewards, 300 Spooky Car partners event tokens.
  • Rank 26 – 50: Cash Rewards.

How to win the Candy Corn Challenge in Monopoly Go?

Tips to win more in Candy Corn Challange (Image via Scopely)
Tips to win more in Candy Corn Challange (Image via Scopely)

You need to save up plenty of dice rolls to win at this Candy Corn Challenge in Monopoly Go, especially with a Spooky Soiree event underway that can also help you win plenty of rewards.

If you are focusing on winning the tournament, you need to land on the Railroad tiles. You will earn two points from a blocked Shutdown, four points from a successful Shutdown, and a Small Bank Heist. You can earn six points from a Large and 12 points from a Bankrupt Bank Heist. You can use the roll multipliers to increase your rewards and reach higher ranks faster.

Since you will need plenty of dice rolls as well, feel free to check out our article to see how to capitalize on the free dice rolls you can get from the game every day.


Scopely’s highly social title has also brought a Spooky Car Partners event that can help you win more amazing prizes. Check out our article to learn more about it.

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": 1725906, "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(1725906); 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(1725906) >= 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(1725906) .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 }); })();

You Might Also Like