Minecaching 图标

Minecaching

作者:rebot | 分类:模组

价格:0 墨喵币 下载量:0 点赞:0 版本 0.4.0.0-snapshot-24w19a
本资源为搬运资源,原资源地址: https://modrinth.com/mod/minecaching
资源信息

Minecraft 版本: 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4

平台: bukkit paper spigot

标签: adventure social

资源介绍

Latest Release
Latest Snapshot

Bring Geocaching to your Minecraft server!

This plugin allows players to hide and find Minecaches (or "Caches") around the server while allowing operators to manage it.

DEVELOPERS: After v0.3.1.0, the artifact id is now minecaching, not Minecaching!

DEVELOPERS: Some API stuff has moved to a new plugin, RDSCommons!

RDSCommons is a new plugin for shared code across Minecaching and future plugins.
See For Developers / Transferring To RDSCommons for more information!

For Server Owners:

Installation

You can find the latest version of Minecaching here.

Minecaching also requires a dependency plugin, RDSCommons, which you can find here.

Server owners can control many things, such as restrictions on where the caches are placed, the types of allowed caches, and more in the config!
Operators have access to certain commands, such as /verify and can (by default) bypass /delete and /edit checks.

For non-english servers, you should change the language in plugins\Minecaching\config.yml.
In there you can also find many other options, such as changing the /mcstats scoring, configuring auto-updates, and more.
You can also change some config values in-game by using /mca conf

Permission Nodes

Permission Node Who has it by default?
minecaching.* Nobody
minecaching.bypass.* OP
minecaching.bypass.delete_others OP
minecaching.bypass.edit_others OP
minecaching.admin.* OP
minecaching.admin.* OP
minecaching.admin.config OP
minecaching.admin.force_stat_update OP
minecaching.admin.reload OP
minecaching.admin.server_data OP
minecaching.command.* OP
minecaching.command.admin OP
minecaching.command.archive OP
minecaching.command.create Everyone
minecaching.command.delete Everyone
minecaching.command.disable OP
minecaching.command.edit Everyone
minecaching.command.hint Everyone
minecaching.command.list Everyone
minecaching.command.locate Everyone
minecaching.command.log Everyone
minecaching.command.logbook Everyone
minecaching.command.maintainer Everyone
minecaching.command.publish OP
minecaching.command.stats Everyone
minecaching.misc.* OP

For Developers:

You can use the Digitalunderworlds Maven to add Minecaching to your project

Adding as a dependency #### Snapshots: ```xml dumaven-snapshots Digitalunderworlds Maven Snapshots https://maven.digitalunderworlds.com/snapshots ``` #### Releases: ```xml dumaven-releases Digitalunderworlds Maven Releases https://maven.digitalunderworlds.com/releases ``` Then, ```xml net.realdarkstudios minecaching 0.4.0.0-snapshot-24w13a ``` You can view versions [here](https://maven.digitalunderworlds.com/#/snapshots/net/realdarkstudios/minecaching) > NOTE: Only full version releases (such as 0.2.0.7) are available in the Releases maven. > If you want to be able to use ANY version, including releases, pick the Snapshot repository! Transferring to RDSCommons With 0.4.0.0, a new plugin (RDSCommons) was created to hold shared code for Minecaching and future projects. To start using RDSCommons, you will need to update to version Snapshot 24w13a or above. Then, add this dependency, replacing (version) with the minimum version you require: ```xml net.realdarkstudios rdscommons [(version), 1.0.99999.0) provided ``` ![Latest RDSCommons Snapshot](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fmaven.digitalunderworlds.com%2Fsnapshots%2Fnet%2Frealdarkstudios%2Frdscommons%2Fmaven-metadata.xml&label=Latest%20RDSCommons%20Snapshot) ![Latest RDSCommons Release](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fmaven.digitalunderworlds.com%2Freleases%2Fnet%2Frealdarkstudios%2Frdscommons%2Fmaven-metadata.xml&label=Latest%20RDSCommons%20Release) #### Changes Summary: - PACKAGE net.realdarkstudios.minecaching.api.menu.impl -> net.realdarkstudios.commons.menu - minecaching.api.misc.AutoUpdater -> commons.util.AutoUpdater - minecaching.api.misc.AutoUpdater.Version -> commons.util.Version - minecaching.api.misc.Localization -> commons.util.Localization - minecaching.api.misc.LocalizationProvider -> commons.util.LocalizationProvider - minecaching.api.util.LocalizedMessages -> commons.util.LocalizedMessages - minecaching.api.util.TextComponentBuilder -> commons.util.TextComponentBuilder - minecaching.api.util.MessagesKeys -> minecaching.api.util.MCMessageKeys (some keys are instead in commons.util.MessageKeys) **Registering A Localization**: ```java import net.realdarkstudios.minecaching.api.Minecaching; import net.realdarkstudios.minecaching.api.MinecachingAPI; import net.realdarkstudios.minecaching.api.misc.Config; // OLD IMPORTS import net.realdarkstudios.minecaching.api.misc.LocalizationProvider; import net.realdarkstudios.minecaching.api.misc.Localization; // NEW IMPORTS import net.realdarkstudios.commons.CommonsAPI; import net.realdarkstudios.commons.util.LocalizationProvider; import net.realdarkstudios.commons.util.Localization; @Override public void onEnable() { Localization exampleLocalization; // OLD exampleLocalization = MinecachingAPI.getLocalizationProvider().load(Minecaching.getInstance()); // NEW exampleLocalization = CommonsAPI.get().registerLocalization(Minecaching.getInstance(), Config.getInstance().getServerLocale()); } ``` `MCMessages` was also removed. Please switch over to `LocalizedMessages`. You may also implement `IRDSPlugin` in your main plugin class to be compliant for any plugin requesting your `Version` information You can see the full changelog message below: Snapshot 24w13a Changelog Added: - MAVEN SOURCES + JAVADOCS to (hopefully) all future Minecaching releases - MCMessageKeys.Command.Stats.NONE - MinecachingAPI#getCommonsAPI Removed: - MinecachingAPI#getConfigDataVersion - MinecachingAPI#getMinecacheDataVersion - MinecachingAPI#getPlayerDataVersion - MinecachingAPI#getLogbookDataVersion - MinecachingAPI#tInfo(String, Object...) - MinecachingAPI#tWarning(String, Object...) - (ALL CLASSES BELOW ARE IN RDSCommons) - AutoUpdater - BaseEvent - BooleanMenuItem - CancellableBaseEvent - CloseMenuItem - ErrorMenuItem - GoBackMenuItem - Localization - LocalizationProvider - MCMenu - MCMenuHolder - MenuItem - MenuItemClickEvent - MenuItemState - MultiStateMenuItem - PaginationMenu - PaginationMenuItem - PaginationPageItem - RefreshPaginationMenuItem - SkullMenuItem - TextComponentBuilder Refactors: - MessageKeys -> MCMessageKeys Changes: - (BUGFIX) Added checks if there are 0 caches (caused issues with adding caches and stats) - Switched over to RDSCommons - UUID check is now in PlayerDataObject#update - RDSCommons dependency - MinecachingAPI#getLogger now returns an RDSLogHelper - And more
下载太慢?试试 墨喵加速站,支持 Modrinth 和外网直链高速下载! 用的人越多,下载的越快!
下载与版本
评论(0)
登录 后发表评论。

暂无评论,抢个沙发吧~

举报此资源

请登录后举报

🔥 相关推荐
Mewtwo's Genesis

价格:0 墨喵币
下载量:0

查看详情
Chiller Companions

价格:0 墨喵币
下载量:0

查看详情
Floral

价格:0 墨喵币
下载量:0

查看详情
Fresh Ores and Ingots VR

价格:0 墨喵币
下载量:0

查看详情