HomeJavaModsCrqzy's NexusCore
Crqzy's NexusCore
ModsJava

Crqzy's NexusCore

by crqzycat · on Modrinth

Modular RPG framework for Paper servers. Adds levels, classes, skills, stats, and a developer API — designed as the foundation for addon plugins.

⬇ Download on Modrinth
Crqzy's NexusCore — screenshot 1

NexusCore — RPG Framework for Survival Servers

Turn any Survival or SMP server into a fully-featured RPG — without replacing a single vanilla mechanic.

NexusCore is a lightweight, modular RPG framework for Paper 1.21+. It provides the foundation that addon plugins build on: a persistent stat system, skill engine, class framework, and a clean public API. Install NexusCore once, then layer as many addons as you like.


Features

Player Stats

Every player has a full set of RPG stats that persist across sessions:

Class System

Three built-in classes with unique stat multipliers — more via addons:

Class HP Mana Attack Defense
Warrior ×1.4 ×0.6 ×1.3 ×1.5
Mage ×0.8 ×1.8 ×1.2 ×0.7
Archer ×1.0 ×1.0 ×1.4 ×0.9

Skill Engine

A full skill registry with cooldown tracking and mana costs. Addons register their own active and passive skills in one line. Players activate skills through addon-defined triggers (items, keybinds, etc.).

Storage

Choose between YAML (zero setup) or MySQL (recommended for larger servers). Switch with one line in config.yml. MySQL saves run async to keep your TPS clean.

Action Bar

A live HP and mana bar shown to every player above the hotbar — always in sync, no config needed.

PlaceholderAPI Support

14 placeholders available for scoreboards, tab lists, and holograms: %nexuscore_level% · %nexuscore_class_name% · %nexuscore_hp% · %nexuscore_mana% · and more.


For Addon Developers

NexusCore exposes a clean public API. Register skills, classes, and listen to RPG events in a few lines of code:

NexusCoreAPI api = NexusCore.getInstance().getAPI();

// Register a custom skill
api.registerSkill(new FireballSkill());

// Register a custom class
api.registerClass(new RPGClass("PALADIN", "Paladin", 1.3, 1.2, 1.0, 1.4, "Holy warrior."));

// Give XP to a player
api.giveExperience(player, 500);

Custom events: NexusLevelUpEvent, NexusClassChangeEvent Utility classes: ChatUtil, ItemBuilder

Full addon documentation is included in the download.


Commands

Command Description
/nexus stats [player] View RPG stats
/nexus spend Spend a stat point
/nexus setclass Set your class
/nexus classes List all classes
/nexus skills List registered skills
/nexus givexp Give XP (admin)
/nexus reset [player] Reset RPG data (admin)
/nexus reload Reload config (admin)

My Addons


Requirements


NexusCore is a developer framework — it adds no gameplay by itself. Gameplay comes from addons that depend on it.

Quick facts

Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.

Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more