Skip to content

Plugin that adds item where you can store and retrieve experience. Inspired by XP Tome mod.

License

Notifications You must be signed in to change notification settings

TeksuSiK/ExperienceTome

Repository files navigation

ExperienceTome

Overview

ExperienceTome is plugin inspired by XP Tome mod for Forge/Fabric. It introduces new single item - Experience Tome. With this tome you can store and retrieve XP. By default it can store up to 30 levels (1395 XP).

Default recipe:

Default recipe

Usage

Sneak + Right-click - Deposit experience to tome Right-click - Withdraw experience from tome

Installation

Simply drop downloaded .jar file to plugins directory in your server's root and start your server.

Configuration

Plugin create a directory with config.yml file, where you can customize maximum experience that can be stored in a single book, system messages, tome material, display name, lore and tome crafting.

For Developers

You can listen for ExperienceDepositEvent and ExperienceWithdrawEvent events in your plugin.

Maven

Add repository to the repositories section:

<repository>
  <id>teksusik-releases</id>
  <url>https://repo.teksusik.pl/releases</url>
</repository>

Add dependency to the dependencies section:

<dependency>
  <groupId>pl.teksusik</groupId>
  <artifactId>ExperienceTome</artifactId>
  <version>1.1.0</version>
</dependency>

Gradle (Kotlin Script)

Add repository to the repositories section:

maven(url = "https://repo.teksusik.pl/releases")

Add dependency to the dependencies section:

implementation("pl.teksusik:ExperienceTome:1.1.0")

Support

If you are experiencing any troubles with using ExperienceTome plugin open a new issue on ExperienceTome's GitHub.