P2P Multiplayer Prototype
Project Type: Solo Project
Role: Solo Developer
Engine: UnrealEngine 5.5.1
Project Duration: January 6 - January 24 2025
Description
This prototype was made as an assignment for our Multiplayer course.
I wanted to create a tab-targeting system that works similarly to those in games like Final Fantasy XIV and World of Warcraft. To go along with that, I made four playable classes with two abilities each, as well as a basic Enemy AI.
Each Character has a set of attributes that can be balanced as needed. These include attributes like Health, Mana, Crit Chance, Attack- and Spellpower.
Play starts by either hosting a new session or joining an existing one.
For the sake of simplicity, sessions are named after the PC that hosts them. In a real-world scenario, I probably wouldn’t do this, as it isn’t particularly readable for someone who is looking for a specific session. However, in this context, there will only ever be one or two active sessions at a time since it only works over LAN, and only people whom I have sent the game to actually have access to it.
After joining a session, players are met with this screen, prompting them to select one of the four playable classes. When selecting, the player will then spawn in.
Once players have joined, they will notice that character movement is replicated on all clients. Player spawning of projectiles and their movement is also replicated.
If a player joins late, changes in the game — such as opened doors and killed enemies — will be reflected as well.
Multiplayer
For the Tab-targeting system, I wanted to create something that would be familiar to fans of the genre. I wasn’t quite sure how to create this system, so I estimated an approach by making a rough TDD.
Since I knew that different characters would have many similar behaviors, I decided to rely heavily on inheritance, minimizing the number of times blueprints would be duplicated between different classes.
The Game
In the end, it looked something like this.
It has a few different methods of targeting an actor depending on context.
Any eligible actor can be targeted by clicking on them. Additionally, if the player presses the Tab key, it will target the nearest actor tagged as an enemy. Repeated presses of Tab will cycle through nearby enemies.
Lastly, the player can target themselves via the player character widget in the lower left quadrant of the viewport.
The mighty tank is the defender of the party.
Abilities:
An Area of Effect (AoE) attack that deals a small amount of damage to nearby enemies.
An AoE buff that reduces damage taken by nearby friendly characters by 50% for 6 seconds.
The vigilant healer sees to the party’s wounds.
Abilities:
A burst of healing that recovers a sizeable amount of health on the target.
A Healing over Time effect that heals the target for a small amount every 2 seconds for 16 seconds.
The cunning caster fights their enemies offensive magic.
Abilities:
Fires a magic projectile that travels to your target. Deals damage on impact.
A Damage over Time effect that damages the target a small amount every 3 seconds for 15 seconds.
The vicious fighter attacks their enemies in close quarters.
Abilities:
A melee attack that deals damage.
An AoE buff that increases the Crit Chance of nearby party members by 10% for 8 seconds.
Tab-targeting
The Tank
The Healer
The Caster
The Fighter
Player Classes
For player classes, I decided to represent four archetypes that would each fill a distinct role in the party, while only having two abilities each; a restriction of the assignment.
This was a really fun and challenging assignment to work on. I had no idea how to go about making something playable in multiplayer, nor did I know how to make a tab-targeting system.
I am quite satisfied with what I ended up with, and it taught me a lot about the differences between developing for single-player and multiplayer.
Given more time and freedom, I would have fleshed out the classes more. The healer could really use some kind of offensive spell, and I think that the critical strike buff from the fighter might fit the fantasy of the caster better. A damage-over-time effect would also be a perfect fit for the fighter, so swapping those out would be good.