⌂ Library home·← Study guides
project Low-Fantasy 3rd-Person RPG · M&B open-world + Chivalry 2 melee 111 resources · 96 curated + 15 new
Tailored Unreal Dev Study Guide

Low-Fantasy 3rd-Person RPG — Build-Pillar Study Path

Scope. A traditional, grounded low-fantasy RPG: third-person character, Mount & Blade-style open world / sandbox / factions, and Chivalry 2-style directional melee (multiplayer). This guide re-cuts the original 96-link study list around that target and adds 15 newly curated resources for topics the original list never covered.

How it's organized. By build pillar, not skill tier. Each row carries a relevance badge for this project and a one-line reason it's here. The 15 additions are marked NEW. Clearly off-genre material (Fortnite battle-royale/shooter, aim trainer, arcade samples) is kept but demoted to a collapsed Lower priority pillar at the end. Progress is saved locally and is independent of the generic guide.

Relevance: Core must-build High strong fit Med useful Low off-genre NEW added gap-closer
Overall progress0 / 111

1 · Foundations & Engine Basics

required literacy
  1. Your First Hour in Unreal Engine 5.2Editor orientation before building any system.HighGeneralEpic Dev Community
  2. Unreal Engine 5 Beginner TutorialEnd-to-end first pass over the UE5 workflow.HighGeneralYouTube
  3. Quickstart: Your First Project in UnrealProject setup conventions.MedGeneralUnreal MediaSpace
  4. Blueprint - Introduction 5.00Blueprint literacy underpins every system below.HighBlueprintsUnreal MediaSpace
  5. Getting Started With BlueprintsReinforces core Blueprint nodes.MedBlueprintsYouTube
  6. Blueprints and Gameplay for Game DesignersDesigner-facing gameplay scripting.HighBlueprintsEpic Dev Community
  7. Blueprint CommunicationActor-to-actor comms = the glue between systems.HighBlueprintsEpic Dev Community
  8. Blueprint DebuggingDiagnose broken graphs fast.MedBlueprintsEpic Dev Community
  9. How to Cast in Unreal Engine 5Casting fundamentals.MedBlueprintsYouTube
  10. Unreal Engine - Casting and Interfaces ExplainedInterfaces decouple combat / RPG code.HighBlueprintsYouTube
  11. How To Use Cast Nodes And Why You Actually Want To Use InterfacesInterface-first architecture for scale.HighBlueprintsYouTube
  12. Demystifying Soft Object References | Inside UnrealAsync asset loading for large worlds.HighBlueprintsYouTube
  13. UE5 Blueprint Tips - Event Tick PerformancePerf discipline when many agents tick.HighBlueprintsYouTube
  14. Begin Play | GameplaySystem initialization order.MedBlueprintsEpic Dev Community
  15. Introduction to EnumerationEnums model states, factions, item types.HighBlueprintsEpic Dev Community
  16. Gameplay Tags - UE4 + UE5Tags drive combat states, factions, abilities.HighBlueprintsYouTube
  17. Unreal Blueprint Best PracticesKeeps growing systems maintainable.HighBlueprintsYouTube
  18. Making Better Blueprints | Unreal Fest 2022Scalable Blueprint architecture.HighBlueprintsYouTube
  19. Blueprints: Blending System Architecture and CreativityDesigning flexible BP systems.MedBlueprintsYouTube
  20. Blueprints In-depth - Part 1 | Unreal Fest Europe 2019Blueprint internals deep-dive.MedBlueprintsYouTube
  21. Blueprints In-depth - Part 2 | Unreal Fest Europe 2019Blueprint internals, continued.MedBlueprintsYouTube

2 · Third-Person Character & Camera

player feel
  1. Build a Third Person Character from ScratchYour player pawn, built from the ground up.CoreBlueprintsEpic Dev Community
  2. Camera Framework Essentials for GamesThe third-person camera rig and its tuning.CoreBlueprintsEpic Dev Community
  3. Enhanced Input ActionsModern input for melee + mount controls.HighBlueprintsYouTube

3 · Melee Combat & Animation

Chivalry 2 core
  1. Demonstrating Animation Blueprints and AI for Gameplay DesignersAnimBP for attacks + the base for enemy AI.CoreBlueprintsEpic Dev Community
  2. Exploring the Gameplay Ability System (GAS) with an Action RPGAbilities / attributes / damage backbone for melee + RPG.CoreBlueprintsEpic Dev Community
  3. Animation IntroductionAnimMontage skills for swings, blocks, hit reactions.MedOthersUnreal MediaSpace
  4. UE5 Basic Melee Combat Tutorial SeriesCombos, hit detection, directional attacks — the Chiv-style loop.HighNEWYouTube
  5. Reactive Melee Combat in Unreal Engine (design paper)Design reference for reactive/contextual melee.MedNEWPDF

4 · Mounts & Mounted Combat

Mount & Blade core
  1. Unreal Horse Riding 1 — Horse CharacterBuild the rideable horse pawn.CoreNEWYouTube
  2. Unreal Horse Riding 3 — Mount and DismountEnter / exit the mounted state cleanly.HighNEWYouTube
  3. Unreal Engine 5 RPG: Creating a Horse Mount SystemEnd-to-end mount system in UE5.HighNEWYouTube

Mounted combat (attacking from horseback, couched lances, trample) layers on top of these + the GAS/melee work in Pillar 3. No single tutorial covers it end-to-end; expect to compose it.

5 · AI & Large-Scale Battles

M&B armies
  1. Designing Scalable Crowds with Mass AIThousands of agents = M&B-scale battles.CoreNEWEpic Dev Community
  2. MassSample — UE5 Mass (ECS) examplesWorking Mass code + docs to learn the framework.HighNEWGitHub

Single-unit enemy AI (perception, behavior) starts from Demonstrating Animation Blueprints and AI in Pillar 3.

6 · Multiplayer & Networking

Chivalry 2 is MP
  1. Basics of Replication | Instances, RepNotify, RPC'sReplication is mandatory for MP melee.CoreBlueprintsYouTube
  2. C++ Introduction to Networking in Unreal Engine 5.00Networked gameplay at the C++ level.CoreProgrammingUnreal MediaSpace
  3. Performing Lag Compensation in Unreal Engine 5Fair melee hits under latency — UE5 ships none of this built-in.HighNEWArticle

7 · RPG Systems & Data

stats · items · quests · saves
  1. Working with Data in Unreal Engine 5 | Unreal Fest 2022Data-driven items, stats, factions (DataTables/assets).CoreOthersYouTube
  2. Creating User Interfaces with UMG and BlueprintsInventory, character sheet, and HUD menus.HighBlueprintsUnreal MediaSpace
  3. Interaction System - UE5Loot, NPC talk, world-object use.HighBlueprintsYouTube
  4. Build Gameplay Mechanics for a Collectible Item GamePickup / loot pattern.MedBlueprintsEpic Dev Community
  5. UE5 RPG Series — Equipment SystemEquip weapons / armor on the character.CoreNEWYouTube
  6. How to Make a Simple Dialogue System in UE5NPC dialogue — the spine of quests.HighNEWEpic Dev Community
  7. Saving and Loading Your Game (official docs)Persist the RPG — the authoritative reference.CoreNEWUnreal Docs
  8. Unreal Engine C++ Save System — Tom LoomanRobust serialize-actors-to-disk pattern.HighNEWArticle

8 · World & Level Design

low-fantasy medieval
  1. Exploring Level Design for Game DevelopmentLevel-design fundamentals.HighLevelEpic Dev Community
  2. Creating a Level Blockout for Game DevelopmentGreybox before committing art.HighLevelEpic Dev Community
  3. Ten Principles for Good Level DesignDurable LD heuristics.HighLevelYouTube
  4. Architecture in Level DesignMedieval architectural language.HighLevelYouTube
  5. Interior Design and Environment ArtCastle / town interiors.HighLevelYouTube
  6. Using Negative Spaces in Level DesignReadable spatial composition.HighLevelYouTube
  7. Hitman: Guiding Players in a Non Linear SandboxSandbox guidance — close cousin to M&B freedom.HighLevelYouTube
  8. Holy Grail of MP Level DesignObjective / MP map design (Chiv2 maps).HighLevelYouTube
  9. Singleplayer vs Mutiplayer LDSP-vs-MP map tradeoffs (this game is both).HighLevelYouTube
  10. Implementing Level Design with BlueprintsScripted level events / encounters.HighLevelEpic Dev Community
  11. Overcoming the Digital Blank PageBeat level-design paralysis.MedLevelYouTube
  12. Level Design Histories and FuturesLD theory context.MedLevelYouTube
  13. Blockmesh and Lighting TipsGreybox + early lighting pass.MedLevelYouTube
  14. Making MountainsTerrain sculpting.MedLevelGoogle Drive
  15. Seeding Trees and RocksNatural set-dressing.MedLevelGoogle Drive
  16. Slope Flatten PathPath / terrain flattening.MedLevelGoogle Drive
  17. Creating a Landscape inside Unreal EngineLandscape build walk-through.MedLevelGoogle Drive
  18. Quick Tutorial for Landscapes (UEFN)Landscape tooling (UEFN, skills transfer).MedLevelYouTube
  19. Creating Splines Roads in UEFNRoads via splines (UEFN).MedLevelYouTube
  20. Building a Hobbit House in FN CreativeModular medieval-ish structure (UEFN).MedLevelYouTube
  21. Disney Princess CastleCastle build technique (whimsical tone — adapt for low-fantasy).MedLevelYouTube
  22. Unreal Engine 5 — Modular Medieval CastleOn-tone modular medieval kit-bashing.HighNEWYouTube

9 · Open-World & Sandbox

Mount & Blade scale
  1. Building Open Worlds in Unreal Engine 5 | Unreal Fest 2022The open-world production pipeline.CoreLevelYouTube
  2. Open World Using World PartitionStreaming large maps without hitches.CoreLevelYouTube
  3. Building Open Worlds in Unreal Engine 5Open-world pipeline (alternate cut).CoreLevelYouTube
  4. PUBG - The Making of SanhokRealistic open terrain + readability at scale.MedLevelYouTube
  5. Building Open Worlds for FortniteOpen-world workflow (Fortnite-specific framing).MedFortniteYouTube

10 · Balance, Economy & Factions

systems design
  1. How Games Get BalancedBalancing basics.HighBalanceYouTube
  2. The Role of "Meta" in Competitive GamesWhy metagames form.HighBalanceArticle
  3. What is POWER CREEP? (And How to AVOID IT!)Avoid stat inflation in gear / abilities.HighBalanceYouTube
  4. Meta Game: Adding Purpose or Shoehorning Design?Metagame design intent.HighBalanceArticle
  5. Managing Competitive Meta-Game Design with 5 Easy TipsPractical meta tuning.HighBalanceArticle
  6. Choose Fairness Over Balance [Game Design]Fairness vs symmetry in asymmetric combat.HighBalanceArticle
  7. Analysis: Playing, Fast and SlowDecision pacing in combat.MedBalanceYouTube
  8. Explaining Metagames: Everything You Need to Know!Metagame overview.MedBalanceYouTube
  9. Balancing League of Legends for Every PlayerBalancing across skill bands.HighBalanceYouTube
  10. Magic: the Gathering — 20 Years, 20 Lessons LearnedLong-term systems-design lessons.HighBalanceYouTube
  11. GDC Vault — Counterplay and Teamplay in MultiplayerCounterplay is the heart of melee depth.HighBalanceArticle
  12. Evaluating Competitive Game Balance with Restricted PlayFormal method to measure balance.MedBalancePDF
  13. Building Sustainable Game Economies: The Three Design PillarsEconomy design for trade, loot, upkeep.HighNEWGDC Vault
  14. Machinations.io — Game Economy DesignModel + simulate the campaign economy.MedNEWArticle

M&B-style faction / diplomacy / campaign-AI simulation is a deeper design domain than any single talk covers; the two economy resources above are the closest verified entry points. Pair with the AI work in Pillar 5.

11 · Programming (C++)

when Blueprints aren't enough
  1. Epic C++ Coding Standard for Unreal EngineHouse conventions before writing C++.HighProgrammingUnreal Docs
  2. C++ Introduction to Unreal Engine for Programmers 5.00C++ gameplay foundation.HighProgrammingUnreal MediaSpace
  3. C++ Introduction to Gameplay in Unreal Engine for Programmers 5.00Gameplay framework in C++.HighProgrammingUnreal MediaSpace

12 · Production & Polish

pipeline & presentation
  1. Understanding Source Control and Perforce Setup 5.00Team-scale version control (Perforce for binary assets).HighOthersUnreal MediaSpace
  2. Asset Dependency Chains: The Hidden DangerAvoid runaway asset bloat.MedOthersYouTube
  3. Niagara Introduction 5.00VFX: dust, sparks, blood, impacts.MedOthersUnreal MediaSpace
  4. Lighting IntroductionLighting fundamentals.MedOthersUnreal MediaSpace
  5. Sequencer - Introduction 5.00Cutscenes / scripted cinematic moments.MedOthersUnreal MediaSpace
  6. Lumen Essentials OverviewDynamic global illumination for day/night worlds.MedOthersEpic Dev Community

13 · Lower priority for this project

  1. Your First Game In Unreal Engine 5Generic sample — Pillars 1–2 cover this better for an RPG.LowGeneralEpic Dev Community
  2. Creating a First-Person Aim TrainerFPS aim mechanics — not melee, not third-person.LowGeneralEpic Dev Community
  3. Let's Make a Game - Brick BreakersArcade genre — off-target.LowGeneralEpic Dev Community
  4. Building a Block Based GameVoxel/arcade — off-target.LowGeneralEpic Dev Community
  5. The UPDATED Fortnite Storyline ExplainedBattle-royale lore — off-genre.LowFortniteYouTube
  6. The ENTIRE History Of Fortnite Battle RoyaleBR history — off-genre.LowFortniteYouTube
  7. Evolution of Fortnite MapBR map meta — off-genre.LowFortniteYouTube
  8. The ENTIRE History of Building (Fortnite)Build-battle mechanic — off-genre.LowFortniteYouTube
  9. The Evolution of Fortnite Aim AssistRanged aim assist — off-genre.LowFortniteYouTube
  10. Evolution of All Fortnite Assault RiflesGun meta — off-genre.LowFortniteYouTube
  11. Evolution of Fortnite ShotgunsGun meta — off-genre.LowFortniteYouTube
  12. Evolution of All Fortnite Mythic Weapons & ItemsGun / item meta — off-genre.LowFortniteYouTube
  13. Devices ExplainedUEFN Creative devices — off-genre.LowFortniteYouTube
  14. Consumables / Weapons / Mythic Items Wiki (FFA 2.0)Fortnite item wiki — off-genre.LowFortniteFandom Wiki
  15. Fortnite Champion Series 2023 | Grand FinalsEsports VOD — off-genre.LowFortniteYouTube
  16. Create a Battle Royale Mini Map with UEFNBR / UEFN-specific — off-genre.LowLevelYouTube