Compatibility
Minecraft: Java Edition
1.21.x
1.20.x
1.19.x
1.18.x
1.17.x
1.16.x
1.15.x
1.14.x
1.13.x
Platforms
Bukkit
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details
Changelog
Enchantments
- Added home admin feature
- Added afk more afk placeholders:
%eternalcore_afk_formatted%
- Returns the text specified in the configuration while the player is afk, and when the player is not afk, this can be configured:
# Placeholder used in %eternalcore_afk_formatted% to indicate AFK status afkEnabledPlaceholder: "<red><b>AFK" afkDisabledPlaceholder: ""
%eternalcore_afk_time%
- Returns the time how long the player is while afk
- Improved teleport do default home.
- Removed the ability of the
/give
command to give items with enchantments. Please use `minecraft:/give' with json format to give enchanted items.
Fixes
- Fixed illegal stack by
/give
command on the new version(1.20.6 - 1.21.3)
Developer API
To use EternalCore API, you first need to add EternalCode to your project. To do that follow these steps: You can check the latest release number here.
- Add repository:
For Gradle projects use:
maven("https://repo.eternalcode.pl/releases")
For Maven projects use:
<repository>
<id>eternalcode-reposilite-releases</id>
<url>https://repo.eternalcode.pl/releases</url>
</repository>
- Add dependency:
For Gradle projects use:
compileOnly("com.eternalcode:eternalcore-api:1.4.0")
For Maven projects use:
<dependency>
<groupId>com.eternalcode</groupId>
<artifactId>eternalcore-api</artifactId>
<version>1.4.0</version>
<scope>provided</scope>
</dependency>