1.0.0
Compatibility
Changes
Account Manager 是一个专门为 Minecraft 服务器设计的经济系统核心模组。它提供了一个稳定、易用的经济框架,其他功能模组(如商店、任务、领地等)可以通过 API 接口与这个经济系统交互,从而实现统一的货币交易和管理。
主要特点
完整的经济系统:支持玩家账户、转账、存款、取款等操作 API 接口:为其他模组开发者提供完整的 API 支持 事件系统:可监听交易、余额变更等事件 管理员工具:提供完善的管理命令和权限控制 数据持久化:支持 JSON/NBT 格式的数据存储 高度可配置:货币名称、符号、初始余额等均可自定义 账户系统 自动账户创建:玩家首次加入服务器时自动创建账户 玩家账户:每个玩家拥有独立的账户,存储余额和交易记录 全局账户:服务器级别的银行账户,用于税收、手续费等 交易历史:记录每笔交易的详情,便于查账
货币操作
存款/取款:向账户存钱或取钱 转账:玩家之间互相转账 余额查询:实时查询账户余额 余额限制:可配置最小/最大余额,是否允许负余额 ###管理功能 余额管理:管理员可设置、增加、减少玩家余额 财富榜:查看服务器最富有的玩家 数据备份:自动保存账户数据,服务器重启不丢失 配置重载:支持热重载配置文件
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:e4mDE6cp:8OOPCitR"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:e4mDE6cp:8OOPCitR"
}

