rpg series logo

Status:
Released

Advanced Quest

The Advanced quest plugin allow designers to create efficiently hundreds of quests without loosing too much time on their implementation. It uses Unreal Engine's built-in delegates to ensure simplicity and optimization, and the majority of the system is implemented in C++.


Here's how the system works: The player has two main components, a Player Channel Component and a Quest Manager Component.

Player Channel: Stores distinct channels like Combat, Environment, and Inventory.
It broadcasts events when actions occur in the world.

Quest Manager: Store, Manages, Load & Save all the quests.

With this system, there's no need to worry about adding any features to your already existing classes.
Anything can be an Objective target; all you need to do is get the Player Channel via Blueprint and trigger the corresponding event.
Depending on their Objectives, the Quests will be bound to specific delegates in order to be succesfully updated. It's that easy.

The Quest Giver & Receiver has a single component — the Quest Component.
It tracks the state of all quests by querying the Quest Manager and displays them to the player only if they are Pending or Valid. Anything can serve as a Quest Giver or Receiver—be it a rock, a tree, or any static mesh.
The component will be automatically added to your specified target when creating the quest with the tool.

Tags:

C++

UNREAL 5

CODE PLUGIN

👤