Wo Long: Fallen Dynasty - How to play the free demo, progression carry-over, and more

Posted by Sherie Connelly on Wednesday, June 26, 2024

Koei Tecmo and Team Ninja's upcoming Soulslike action role-playing game, Wo Long: Fallen Dynasty, is set to be released in less than a week's time. In preparation for this, Koei Tecmo has made a free demo of the game available on all platforms for players to try out before potentially purchasing it. This demo allows players to play through the first two main story chapters of the game to get a feel of its combat and progression system.

Wo Long: Fallen Dynasty, despite being developed by the same team that created the Nioh series as well as the recent Final Fantasy spin-off, Stranger of Paradise: Final Fantasy Origin, is a fairly different game. As such, having a playable demo that allows players to go through the first couple of main story chapters is a great way for players to enjoy a first-hand experience of the new and improved combat system.

As an added bonus for anyone who tries out the demo, there are free rewards that players can redeem and use in the full game, including an exclusive armor piece. Furthermore, players can take the character build and progression made in the demo to the final game, which is an added incentive for players to explore the levels available in the demo and optimize their early-game builds before the game's scheduled release.

How to download and play Wo Long: Fallen Dynasty demo?

Downloading a free demo of Team Ninja's latest action role-playing title will be as simple as going to your preferred platform's digital storefront and installing the demo from there. Here's a quick rundown on how to easily download and play the demo on PlayStation 4/5, Xbox One/ Series X|S and Windows PC (Steam):

PlayStation 4/5

  • Go to the PlayStation Store and search for Wo Long: Fallen Dynasty.
  • Scroll down and click on 'Free demo.'
  • Download the demo on your console.
  • Once the download finishes, launch the game from your PlayStation's dashboard.

Xbox One/ Series X|S

  • Go to the Xbox Store and search for Wo Long: Fallen Dynasty.
  • Scroll down and click on the 'Get Free' option within the demo's page.
  • This will add the demo to your download queue.
  • Once it's downloaded, launch the game from your Xbox's home screen.

Windows PC (Steam)

  • Open Steam and head to the Store.
  • Search for Wo Long and go to the game's store page.
  • Scroll down to get to the free demo section and click on 'Download.'
  • When the download is finally down, start the game from your Steam library.

The download size for the demo varies from platform to platform, but should be roughly around 20 gigabytes. Interestingly, the demo even features online multiplayer game modes, i.e., PvP as well as PvE modes.

What to expect in the Wo Long: Fallen Dynasty demo

The free demo for Wo Long: Fallen Dynasty is a great way for players to try out the combat and progression system of the game before purchasing the full game. The first two chapters, namely, Chapter 1: Village of Calamity and Chapter 2: Two Chivalrous Heroes, are a great starting point for players to familiarize themselves with the game's combat and leveling systems.

The first two chapters see players battle hordes of enemies before coming face-to-face against three major bosses. Although the demo only includes the first two chapters, there's still plenty of loot (including weapons and armor) for players to collect so that they can craft and optimize their early-game builds.

It should be noted that players can carry over their progress from the demo to the full release version of the game, including their character levels, weapons, wizardry spells, and more. Additionally, players will gain access to a free DLC armor piece called 'Crouching Dragon Helmet' in the full game after completing the free demo. Although the armor piece doesn't really feature anything special in terms of stats, it's still an exclusive reward that players can use to customize their playable character.

Wo Long: Fallen Dynasty is scheduled to release on March 3, 2023 for PlayStation 5, PlayStation 4, Xbox One, Xbox Seires X|S, and Windows PC.

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

ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaJ2jpbyzwNJorqhlnKS7qHnFmqOlnZ5isbq6wKyrsmWYpMRuvMuasGaeopqybrDEpqZmqKKktLOx0qygqKZdmK6zvthmpq%2Bdog%3D%3D