Genshin Impact Pyramid puzzle guide to get Luxurious chest at the top: Location, path, and solution

April 2024 · 8 minute read

Opening Luxurious Chests are a great way to earn a decent amount of Primogems in Genshin Impact. This guide will present the solution to a puzzle inside a glowing pyramid so gamers can get one of those chests. However, players have to complete the following quests to access the puzzle:

  • Lost in the Sands
  • An Introduction to Indoor Archaeology
  • The Secret of Al-Ahmar
  • Dreams Beneath the Searing Sand
  • Dual Evidence
  • If the player hasn't started with the Golden Slumber quest series, they should know that getting to the Luxurious Chest will take them a few hours. Another thing worth mentioning is that completing the mentioned quests gives the players plenty of Primogems.

    Note: This guide focuses primarily on the Luxurious Chest puzzle under the assumption that the reader has already completed the quests.

    Genshin Impact guide: Luxurious Chest puzzle inside glowing pyramid

    Use this Teleport Waypoint (Image via HoYoverse)

    This guide will include several photos since underground locations can be confusing for some Genshin Impact players.

    First, use the Teleport Waypoint that's directly south of The Mausoleum of King Deshret.

    Head straight from here (Image via HoYoverse)

    After you teleport, make a right turn to see something similar to what's shown in the above image. Simply go straight ahead, all the way to that glowing pyramid at the end.

    Enter the glowing pyramid (Image via HoYoverse)

    Once you reach the glowing door of this pyramid, go inside by simply walking into the door. Now, Genshin Impact players will be teleported somewhere else.

    This is where you get teleported (Image via HoYoverse)

    The above image shows the area where you will get teleported. There will be several Everlight Cells in this puzzle, but the first thing that you should do is get rid of the lower platforms.

    An example of a low platform (Image via HoYoverse)

    Doing that is actually quite easy. You just need to step on them. Genshin Impact characters like Kazuha can help you in this regard if you don't want to climb a little to reach them.

    An example of a platform disappearing (Image via HoYoverse)

    Repeat this process for the remaining three platforms that are at a lower height. The purpose of this part of the puzzle is to get all the beams of light to reach the center platform. The next step involves the hourglass mechanism.

    An example of one of those hourglasses (Image via HoYoverse)

    Interacting with this hourglass will summon a Four-Leaf Sigil. Teleport to it to arrive at the middle platform, which is instrumental to solving this puzzle required to get the Luxurious Chest.

    You will arrive here (Image via HoYoverse)

    You must rotate this Genshin Impact mechanism twice so that it shoots a beam of light toward a giant obelisk. Once that's done, return to one of the two hourglasses — it doesn't matter which one.

    You should be back here (Image via HoYoverse0

    This part involves teleporting to different Four-Leaf Sigils and moving cells around. Good use of the Four-Leaf Sigils will make this part swift.

    This is what you need to move (Image via HoYoverse)

    There will be three cells that you need to move. Using the Four-Leaf Sigils is not required to reach them. However, using the Four-Leaf Sigils makes this puzzle a lot easier.

    Genshin Impact players are almost done with this puzzle. There is just one more major step left.

    Go up here (Image via HoYoverse)

    It's time for you to go up to the top floor. If you can't reach the area shown in the image above, reactivate the hourglass mechanism to spawn the Four-Leaf Sigils to get here quickly. Rotate the cell here twice.

    The Luxurious Chest will now spawn.

    Open it (Image via HoYoverse)

    Glide down to the Luxurious Chest and open it. That's it for this Genshin Impact puzzle guide.

    Poll : Did you like this puzzle?

    182 votes

    '; }); pollOptions.innerHTML = pollOptionsDom; pollCount.innerHTML = totalVotes + ' votes'; } function updatePollCountOnAnswer(selectedOption) { var pollData = pollDataDefault; renderPollWidget(pollData, selectedOption, true); } function renderPollWidget(pollData, selectedOption, isAnswered) { if (!pollData) return; pollData.option1_count = pollData.option1_count || 0; pollData.option2_count = pollData.option2_count || 0; pollData.option3_count = pollData.option3_count || 0; pollData.option4_count = pollData.option4_count || 0; if (isAnswered) { if (selectedOption == "option1") pollData.option1_count += 1; if (selectedOption == "option2") pollData.option2_count += 1; if (selectedOption == "option3") pollData.option3_count += 1; if (selectedOption == "option4") pollData.option4_count += 1; } if (isAnswered || selectedOption) { var predictorPromotionalBannerContainer = $(".predictor-contest-banner-container.Article-poll"); if (predictorPromotionalBannerContainer) { removeClass(predictorPromotionalBannerContainer, "hidden"); } } var totalVotes = Number(pollData.option1_count + pollData.option2_count + pollData.option3_count + pollData.option4_count); if (totalVotes && !Number.isNaN(totalVotes)) { var option1Percent = pollData.option1_count / totalVotes * 100; var option2Percent = pollData.option2_count / totalVotes * 100; var option3Percent = pollData.option3_count / totalVotes * 100; var option4Percent = pollData.option4_count / totalVotes * 100; var optionPercentages = [option1Percent, option2Percent, option3Percent, option4Percent]; var pollOptions = $("#poll-options"); var pollCount = $("#poll-count"); var pollOptionsDom = ''; var optionsArray = ['option1', 'option2']; if (pollData.option3 !== "" && pollData.option3 !== null) { optionsArray.push('option3') } if (pollData.option4 !== "" && pollData.option4 !== null) { optionsArray.push('option4') } optionsArray.forEach(function (option, index) { var clickHandler = 'onclick="answerPoll(event, \'' + option + '\')"'; var optionClass = ['poll-option']; if (selectedOption) { optionClass.push('poll-option-answered'); clickHandler = ''; } if (selectedOption === option) { optionClass.push('poll-option-selected'); } pollOptionsDom += ''; if (selectedOption) { var widthPercentage = optionPercentages[index] < 5 && optionPercentages[index] != 0 ? 5 : optionPercentages[index]; if (selectedOption === option) { if (widthPercentage > 97) { pollOptionsDom += ''; } else { pollOptionsDom += ''; } } else { if (widthPercentage > 97) { pollOptionsDom += ''; } else { pollOptionsDom += ''; } } } pollOptionsDom += '

    ' + pollData[option] + '

    '; if (selectedOption) { pollOptionsDom += '

    ' + Math.round(optionPercentages[index]) + '%

    '; } pollOptionsDom += ''; }); pollOptions.innerHTML = pollOptionsDom; pollCount.innerHTML = totalVotes + ' votes'; if (totalVotes > 10) { pollCount.classList.remove("hidden"); } } trackArticlePollImpression(pollData); } function answerPoll(e, selectedOption) { e.preventDefault(); updatePollCountOnAnswer(selectedOption); var isDesktop = "1"; var gaPayload = { "question" : pollDataDefault.question, "answer" : e.target.textContent, "answer_option" : selectedOption.replace("option", "Option "), "category": "Esports & Gaming", "page_location": window.location.href, } if (pollTaglinePosition && pollTaglinePosition != "") { gaPayload["poll_position"] = pollTaglinePosition; } if (isDesktop) { gaPayload["device"] = "Desktop"; } else { gaPayload["device"] = "Mobile"; } gtag("event", "ARTICLE_POLL_RESPONSE", gaPayload); var url = 'https://a-gotham.sportskeeda.com/polls/24429/response'; var data = { "poll_type": "article", "option": selectedOption } pureJSAjaxPost(url, data, onPollResponseSuccess.bind(this, selectedOption), onPollResponseFail.bind(this, selectedOption), null, false); } function trackSponsoredLinkClick(e) { var pollTheme = "default"; gtag('event', 'click', { 'event_category': 'PollSponsoredLink', 'event_label': pollTheme }); } var articlePollImpressionTracked = false; function trackArticlePollImpression(pollData) { var pollElement = $("#poll"); var intersectionObserverForArticlePoll = new IntersectionObserver( function(entries) { entries.forEach(function(entry) { if (articlePollImpressionTracked) return; if (!entry.target || !entry.isIntersecting || entry.intersectionRatio < 0.5) return; setTimeout(function() { if (isInViewport(entry.target)) { articlePollImpressionTracked = true; var isDesktop = "1"; var gaPayload = { "question" : pollData.question, "category": "Esports & Gaming", "page_url": window.location.href, } if (isDesktop) { gaPayload["device"] = "Desktop"; } else { gaPayload["device"] = "Mobile"; } if (pollTaglinePosition && pollTaglinePosition != "") { gaPayload["poll_position"] = pollTaglinePosition; } gtag("event", "ARTICLE_POLL_IMPRESSION", gaPayload); intersectionObserverForArticlePoll.unobserve(entry.target); } }, 1000); }); }, { threshold: 0.5 } ); if (pollElement){ var isAnswered = pollElement.querySelector(".poll-option-answered"); if (!isAnswered) { intersectionObserverForArticlePoll.observe(pollElement); } } }

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

    ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaJ2jpbyzwNJonp6mo522r3nIpqeam6Rivbq%2BwKagnWWgqse7uMRmnq6hlJp6qLHTZqOusKWntrDB0maaoZ2jqXq1u89mo6ibkam2sLqMqZitoF2ovK3B06Kmpw%3D%3D