How to install construction materials at the gate in Fortnite Chapter 4

Fortnite update v23.20 dropped yesterday and brought players a new set of quests. These quests have once again brought a lucrative opportunity for players to level up faster across their Battle Pass and unlock Midseason Drops that require them to Earn 10 Account Levels.

Alongside the update, new items like Falcon Scout, five new Augments, and the return of Deku's Smash Mythic were also seen. However, players are more focused on the new set of Oathbound Quests, where they finally have a chance to progress across the medieval storyline in Fortnite Chapter 4 Season 1.

fortnite-promotional-banner

The new set of quests introduces players to Rift Warden Stellan on the island and his task of building a bridge between new realities, as asked by The Ageless Champion, who guards The Citadel. As soon as they contact Stellan at the Hologram Brazier, they are asked to complete the next stage of the quest, where they need to install construction materials at the Rift gate.


Fortnite Oathbound Quest Part 2 Stage 2 guide: Install Construction Materials at the gate

youtube-cover

The second part of Oathbound Quests was released yesterday with the latest Fortnite update that progresses the medieval storyline and brings loopers closer to the mysterious characters roaming the island and their motives.

Once you are done with Stage 1 of the new questline, Stage 2 will require you to install construction materials at the rift gate Stellan wishes to create for The Ageless Champion.

1) Head to the Oathbound Quests Tab to locate the location of materials on the map

Location of Construction Materials on the map (Image via Sportskeeda)
Location of Construction Materials on the map (Image via Sportskeeda)

Before you begin the quest, you can head to the Oathbound Quests tab in the game's menu to see the Construction Materials located between the Citadel and Breakwater Bay.

The easiest way to get there is to land on a medieval building in the area, loot some weapons to defend yourselves with, and proceed closer to the marked location of the materials.


2) Interact with the Construction Materials placed there

Interact with Construction Materials at the Gate (Image via Sportskeeda)
Interact with Construction Materials at the Gate (Image via Sportskeeda)

Upon going closer to the marked location, you can easily spot three pieces of equipment placed there, which will be translucent in color. Just go closer to them and interact with them.

Repeat the process until you are done interacting with all three of the pieces of equipment placed right next to each other. A simpler way to navigate them is to notice the white exclamation mark on top of objects you would need to interact with.


3) Look out for Constructed Materials and listen to Stellan's Voice Lines

Constructed Materials at the Gate (Image via Sportskeeda)
Constructed Materials at the Gate (Image via Sportskeeda)

Once you install all three Construction Materials, Stage 2 of Fortnite Oathbound Quests will be completed, and you will be granted 20,000 XP. Additionally, Stellan will further guide you to Stage 3 of the quests, where you can follow the next set of instructions to continue completing Part 2 of the new questline.

While loopers are still unaware of the motives of The Ageless CHampion and Stellan, AMIE occasionally steps in at a later stage in the questline to help loopers test out this new technology. Until then, the new quests will bring more opportunities for players to level up faster using legitimate methods in Fortnite Chapter 4 Season 1.

The Battle Bus is heading into Fortnite Chapter 4 Season 4 soon! Check out the final Fortnite item shop today!

Quick Links

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