In Baldur's Gate 3, exploration plays a significant role when it comes to both starting and completing various missions. The method of initiating both main and side quests in the game is quite distinctive, mostly involving players to reach a particular location in order to start the mission. However, reaching these specific locations often requires players to travel through other areas.
Among the noteworthy sites within the game lies the Thorn Mausoleum, within which resides a puzzle known as the Three Fresque puzzle. To partake in it, you must first arrive at this mausoleum.
Navigating through Baldur's Gate 3 requires precise directions, as a single incorrect path can lead to complications, so it's crucial to adhere to the correct directions to successfully arrive at the Thorn Mausoleum.
That said, this article details the directions to access the Thorn Mausoleum within Baldur's Gate 3.
How to reach the Thorn Mausoleum in Baldur's Gate 3?
The path to the Thorn Mausoleum in Baldur's Gate 3 unfolds as you progress through Act 2, following your arrival at the Moonrise Towers. Upon reaching the towers, you must follow specific instructions to navigate toward the various sections of the mausoleum.
These areas within the mausoleum are not only eerie but riddled with numerous traps, making it imperative to proceed cautiously.
Step 1
Upon your arrival at the Moonrise Towers, continue in a straight direction and ascend the stairs close to the traps. After doing so, you will encounter a tree. Take a left turn from it.
Step 2
Keep moving forward, and you will encounter another flight of stairs. Take these stairs, and you will reach the House of Healing. Thereafter, go straight without any turns. As you move onward, you will notice bloodstains on the floors and piles of deceased bodies.
Step 3
Proceed straight and access the Surgery Room. Inside, you will find a key. Pick it up and use it to unlock the small door. Then, take the left pathway and continue your journey.
Step 4
You will come across trees with red flowers. Progress further, and you will successfully arrive at the Thorn Mausoleum.
How to solve Thorn Mausoleum Buttons in Baldur's Gate 3
Step into the mausoleum and proceed by opening the gates. As you continue, you will encounter the Thorn Mausoleum Buttons puzzle. You will find two majestic walls with buttons near their bases. Activate these buttons and then engage with the central wall, pressing its button.
Following this, the main wall will open, granting you entry to the subsequent section. As you venture into this new area, you'll discover a precious item known as the Traversal Gem. Following that, your next journey will commence.
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": 1619861, "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(1619861); 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(1619861) >= 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(1619861) .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 }); })();