Overview

The goal of this project was to create a Mount & Blade-style experience, featuring an inventory system, diverse weapons and skills, and, most importantly, a fully functional squad system. The player commands a group of soldiers in battle, issuing orders such as Attack, Hold Position, or Retreat, while also engaging in hack-and-slash combat themselves.

Development Process

I documented the entire development journey in a video (linked here), showcasing the process from the character controller and melee combat system to the AI squad behavior using Behavior Trees.

  • Combat System: I explored various approaches before finalizing a deliberate, methodical hack-and-slash system. Attacks are precise and impactful, with hit detection that reacts dynamically based on where the weapon connects. For example:

    • A headshot can knock an enemy back or decapitate them.

    • Strikes to different body parts cause varying reactions and stagger effects.

  • Squad AI & Orders System:

    • Implemented a command system allowing the player to issue orders (e.g., Attack, Defend, Regroup).

    • Soldiers react intelligently to battlefield situations using a Behavior Tree-driven AI.

    • The AI balances autonomy with direct player control, ensuring units don’t feel overly robotic while still following commands effectively.

  • Inventory & Equipment System:

    • I modified an existing inventory plug-in to include custom stats for weapons and armor.

    • Designed various weapons and armor sets, each affecting combat differently.

    • Inventory management plays a role in tactical decisions, allowing players to gear up before battles.

Tools & Technologies Used:

  • Engine: Unreal Engine 4

  • Inventory System: Modified an existing plug-in for seamless integration

Combat & Player Controller

A smooth, responsive combat system was key to making the gameplay feel impactful. I designed a two-state animation system, where the character dynamically transitions between:

  • Movement Mode: Freely roaming the environment, allowing for exploration and enemy positioning.

  • Combat Mode: Triggered when attacking or locking onto enemies, switching the animation set and movement style to feel more controlled and precise, similar to Dark Souls’ lock-on system.

To achieve this, I leveraged UE5’s Animation Blueprint system, adapting and retargeting existing animations while modifying strafing movements in Blender for smoother lateral navigation during combat.

Execution-based Upgrade System

Instead of using traditional item drops, I designed a risk-reward upgrade system where new abilities are obtained through executing weakened enemies. Each enemy type offers different potential upgrades, meaning players must:

  • Assess which enemies are worth executing based on their build preferences.

  • Manage their limited execution charges per room, making each decision meaningful.

  • Experiment with different combinations to discover synergies between weapons, abilities, and enemy types.

This system encourages players to think about which enemies they prioritize rather than just eliminating everything in sight. Inspired by Risk of Rain 2’s item drops, this mechanic adds depth by tying progression to player agency rather than pure RNG.