▶️ ЗАБЕРИ СВОИ 8 ПОДАРКОВ 🎁 ПРИ СОЗДАНИИ СВОЕГО МАЙНКРАФТ СЕРВЕРА
Моды/CuriosPaper
CuriosPaper

CuriosPaper

Making the curios api for paper mc

502
8
CuriosPaper Banner

✦ CuriosPaper ✦

The Ultimate Custom Accessory Inventory System for Paper & Spigot

Version Minecraft Discord bStats Docs Ko-fi

Rings · Necklaces · Capes · Crowns · Belts · Charms — and more.
Fully server-side. No mods required. Powerful developer API.


Think of it as Baubles / Curios — but for Paper & Spigot, with 3D models, loot tables, GUI editors, and a full plugin API.


🧩 What is CuriosPaper?

CuriosPaper adds a complete accessory slot system to your Minecraft server. Players can equip rings, necklaces, capes, belts, charms, and more through a clean, tiered GUI — no client mods required.

Main Accessory Menu

The main accessory menu with all 9 slot types


⚡ Features

🎒 Core Accessory System

FeatureDescription
💍9 Slot TypesHead, Necklace, Back, Body, Belt, Hands, Bracelet, Ring, Charm
Ability SystemPotion effects & attribute modifiers that activate when equipped
Quick EquipShift + Right-Click to instantly equip accessories from your hand
🎹Hotkey SystemConfigurable sneak keybind to open the accessory GUI — no commands needed
🪂Elytra Back SlotEquip elytra in the back accessory slot (1.21.3+)
☠️Death BehaviorKeep, drop, or auto-detect accessories on death — fully configurable

🎨 3D Model System NEW in v1.3.0

Attach custom 3D models directly to the player's body when accessories are equipped. Models are rendered using synchronized invisible armor stands — visible to all nearby players.

  • 🔄 Tracks player movement, rotation, sneaking, swimming, and flying
  • 👁️ Smart visibility culling — hide models from the wearer's first-person view
  • 🔱 Trident compatibility — models auto-hide during throws and riptide
  • 🧟 Mob models — mobs can visually wear items they'll drop
  • 🎮 Per-item toggle — players can right-click to show/hide their models

🛠️ In-Game GUI Editors

Create and configure everything visually — no YAML editing required:

EditorWhat It Does
Item EditorSet name, material, lore, model data, slot type
Ability EditorConfigure potion effects & attribute modifiers with triggers
Recipe EditorShaped, shapeless, furnace, blast, smoker, anvil & smithing recipes
Loot Table EditorBrowse all server loot tables, add items to dungeon chests with presets
Mob Drop EditorConfigure which mobs drop your items and at what chance
Trade EditorSet up villager trades with professions and price ranges
3D Model EditorConfigure body-mounted 3D models with pitch limits

Slot Inventory

Slot inventory with accessories equipped

📦 Item Distribution

ChannelDescription
Crafting Recipes7 recipe types — shaped, shapeless, furnace, blast, smoker, anvil, smithing
Loot TablesItems appear in dungeon chests, mineshafts, temples, strongholds, and more
Mob DropsAny mob type can drop accessories with configurable chance & amount
Villager TradesAccessories appear in villager trade pools by profession and level
Commands/edit give <item> [player] [amount] for direct distribution

🔌 Developer API

A comprehensive API for other plugins to integrate with CuriosPaper:

CuriosPaperAPI api = CuriosPaper.getInstance().getCuriosPaperAPI();

// Tag any item as an accessory
ItemStack ring = api.tagAccessoryItem(myItem, "ring");

// Check what a player is wearing
List<ItemStack> rings = api.getEquippedItems(player, "ring");
boolean hasRing = api.hasEquippedItems(player, "ring");
int count = api.countEquippedItems(player, "ring");

// Register slots, items, recipes, loot tables at runtime
api.registerSlot("earring", "Earring", "DIAMOND", 2);
api.registerItemLootTable("my_ring", new LootTableData("minecraft:chests/simple_dungeon", 0.25));
api.setItemModelConfig("my_cape", true, "LEATHER_HORSE_ARMOR", null, "myplugin:cape", 45f, 30f);

// Contribute resource pack assets from your plugin's JAR
api.registerResourcePackAssetsFromJar(myPlugin);

Custom Events:

EventWhen It Fires
AccessoryEquipEventPlayer equips, unequips, or swaps an accessory
CuriosLootGenerateEventCustom item generated in a loot container (cancellable)
CuriosMobDropEventCustom item dropped by a mob (cancellable)
CuriosRecipeTransferEventCustom item crafted via a recipe

🎮 How It Works

1. /baubles              →  Opens the accessory menu
2. Click a slot icon     →  Opens that slot's inventory
3. Place an accessory    →  Abilities activate instantly!

Or use Quick Equip: Hold a tagged item + Shift + Right-Click to equip instantly.

Or use the Hotkey: Select a hotbar slot + Double-Sneak to open the menu.


📊 Stats


🔧 Compatibility

Requirements
Minecraft1.14.4 — 26.1+
ServerSpigot, Paper, Purpur, Folia*
Java8+
DependenciesNone (standalone)

*Folia support is experimental


📥 Quick Start

# 1. Download CuriosPaper.jar from Modrinth or GitHub Releases
# 2. Drop it into your server's plugins/ folder
# 3. Start the server
# 4. Done! Use /baubles in-game

First Accessory in 60 Seconds

/edit create speed_ring          # Create a new item

In the GUI: set the name, material, slot type → add a Speed ability → add a recipe → done.

/edit give speed_ring             # Get the item
/baubles                          # Open accessory menu

Place it in a ring slot — Speed I activates! 🏃


⚙️ Configuration Highlights

# Accessory slots — fully customizable
slots:
  ring:
    name: "Ring"
    icon: "GOLD_NUGGET"
    amount: 2

# Hotkey to open GUI without commands
features:
  hotkey:
    enabled: true
    slot: 8
    sneak-type: "double"       # single, double, or hold

  # What happens to accessories on death?
  keep-curio-inventory:
    type: "Auto"               # Always, Auto, or Never

# Resource pack with external pack merging
resource-pack:
  enabled: true
  combine-external-rp: false

Full configuration reference → curiospaper.run.place


📖 Documentation

The full documentation site covers:

SectionTopics
Getting StartedInstallation, concepts, first accessory walkthrough
ConfigurationSlots, features, abilities, performance & storage
SystemsAccessories, abilities, recipes, loot tables, mob drops, trades, 3D models, hotkeys, death behavior
GUI EditorsItem, ability, recipe, loot table, mob drop, trade, 3D model editors
Developer APIGetting the API, accessories, loot tables, 3D models, resource packs, events
ExamplesComplete plugin examples with loot tables, abilities, and recipes

🆕 What's New in v1.3.0

  • 3D Model System — Custom models mounted on the player's body via armor stands
  • Quick Equip — Shift+Right-Click to equip accessories instantly
  • 🎹 Hotkey System — Single/double/hold sneak keybinds
  • ☠️ Keep Inventory on Death — Always / Auto / Never modes
  • 📋 Loot Table Editor — Full 3-screen GUI with browser, search, and presets
  • 🧟 Mob 3D Models — Mobs visually wear items they can drop
  • 📢 New EventsCuriosLootGenerateEvent & CuriosMobDropEvent
  • 🔧 15+ New API Methods — 3D models, loot tables, resource pack assets, and more
  • 📦 External Resource Pack Merging — Combine other plugins' packs into one

Full changelog → CHANGELOGS.md


💬 Community

Discord

discord.gg/r5YXqgrGya

Get help · Report bugs · Suggest features · Stay updated


☕ Support the Project

If CuriosPaper has been useful to you, consider leaving a tip — it helps keep the project alive!

Ko-fi

ko-fi.com/brothergaming52


🤝 For Developers

Maven

<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>

<dependency>
    <groupId>com.github.Brothergaming52</groupId>
    <artifactId>CuriosPaper</artifactId>
    <version>1.3.0</version>
    <scope>provided</scope>
</dependency>

plugin.yml

depend: [CuriosPaper]

Full API docs → curiospaper.run.place/api


Made with ❤️ by Brothergaming52

Documentation · Discord · Ko-fi · Changelog · bStats · GitHub

Совместимость

Minecraft: Java Edition

26.1.x1.21.x1.20.x1.19.x1.18.x1.17.x1.16.x1.15.x1.14.x

Платформы

Поддерживаемые окружения

Сервер

Детали

Лицензия:LicenseRef-All-Rights-Reserved
Опубликован:5 месяцев назад
Обновлён:6 дней назад
Главная