Getting Started
The addon system allows you to extend and customize the server experience without the need to directly modify the code base.
Introduction
Addons function as independent modules that can interact with the server's core functions, adding new mechanics and improving gameplay. Thanks to this system, it's possible to manage custom content, such as vouchers, reward systems, events, and more, without the need to make drastic changes to the core.
βοΈ Features
Modularity β Addons are loaded and managed independently, which facilitates their maintenance and updates.
Integration β Allows you to create and extend existing commands without conflicts.
Flexible configuration β Uses configuration files to modify each addon's behavior without having to edit code.
Event compatibility β Addons can react to server events and execute actions in response.
Optimization β Designed to minimize performance impact, ensuring a smooth experience for players.
π Usage Examples
ποΈ Voucher System
One of the most used addons is the voucher system, which allows players to receive rewards in the form of custom items.
Main commands:
/therewards voucher giveall <type> <amount>
β Gives a voucher to all connected players./therewards voucher takeall <type> <amount>
β Removes a specific amount of vouchers from all connected players.
These commands facilitate the distribution of rewards and the administration of special items on the server.
π§ Installation and Configuration
Place the addon files in the corresponding folder within the server.
Reload the addons with the appropriate command or by restarting the server.
Adjust the configuration in the YAML files as needed.
π Available Addons Documentation
Vouchers
Redeemable coupon system
/therewards voucher
EventManager
Temporary event management
/event start
, /event stop
CustomCommands
Creation of custom commands
/customcmd add
, /customcmd remove
π Addon Lifecycle
Loading - The addon initializes when the server starts
Registration - Commands, listeners, and hooks are registered
Execution - The addon responds to events and commands
Unloading - Memory is freed when the addon is deactivated
β Frequently Asked Questions
Do addons affect server performance? Addons are designed to have minimal impact. Each one can be activated or deactivated as needed.
How do I create my own addon? Check our development guide in the developers section, where you'll find templates and code examples.
Last updated