main: The fully qualified class name of your main addon class
Configuration File
Create a config.yml file at the root of your JAR:
# WelcomeAddon Configuration
file-version: 1.0
# Welcome message shown to players when they join
welcome-message: "§aWelcome to our server! Enjoy your stay!"
# Other settings
enable-join-messages: true
Working with Player Data
The addon system provides methods to store and retrieve player-specific data:
// Example Player Data Class
public class PlayerWelcomeData {
private int loginCount;
private long lastLogin;
private boolean hasSeenWelcome;
// Getters and setters
}
// Storing player data
PlayerWelcomeData data = new PlayerWelcomeData();
data.setLoginCount(5);
data.setLastLogin(System.currentTimeMillis());
data.setHasSeenWelcome(true);
savePlayerData(player.getUniqueId(), data);
// Loading player data
loadPlayerData(player.getUniqueId(), PlayerWelcomeData.class)
.thenAccept(playerData -> {
if (playerData != null) {
int logins = playerData.getLoginCount();
player.sendMessage("This is your " + logins + " login!");
}
});
Installation
Place your addon JAR file in the /plugins/TheRewards/addons/ directory.
Restart the server or use the reload command provided by TheRewards.
Verify that your addon loaded correctly by checking the console logs.
Best Practices
Clean Resource Management: Always clean up resources in the onUnload() method.
Configuration First: Use configuration files for customizable elements rather than hardcoding values.
Error Handling: Implement proper error handling to prevent addon failures from affecting the main plugin.
Performance Awareness: Be mindful of performance, especially for scheduled tasks and event listeners.
Unique Names: Ensure your addon has a unique name to avoid conflicts with other addons.
Advanced Usage: Commands with Subcommands
For more complex command structures:
private class AdvancedCommands extends CommandArg {
public AdvancedCommands() {
super("myaddon");
}
@Override
public boolean execute(CommandSender sender, String[] args) {
if (args.length < 1) {
sender.sendMessage("Usage: /therewards myaddon <subcommand>");
return true;
}
switch (args[0].toLowerCase()) {
case "help":
showHelp(sender);
return true;
case "stats":
if (args.length < 2) {
sender.sendMessage("Usage: /therewards myaddon stats <player>");
return true;
}
showStats(sender, args[1]);
return true;
// Add more subcommands
}
return false;
}
// Helper methods for subcommands
private void showHelp(CommandSender sender) {
// Show help information
}
private void showStats(CommandSender sender, String playerName) {
// Show player stats
}
}