AgarthaLib [1.7.x - 1.13.x] AgarthaLib 库

作者:Praya 发布时间:2018年5月20日 原生版本:未知 测试支持:1.7,1.8,1.9,1.10,1.11,1.12,1.13

Aagartha插件的核心库

点此下载

插件详细介绍

AgarthaLib

AgarthaLib 是一个为 Agartha 系列插件提供通用功能和 API 的核心库。它简化了插件开发流程,并确保各个插件之间的一致性和兼容性。

📚

指令

玩家指令

控制台指令

🛡️

权限节点

⚙️

配置示例

config.yml


# AgarthaLib configuration file

# Enable debug mode (prints extra information to the console)
debug: false

# Locale settings
locale:
  # Default locale to use
  default: "en_US"
  # Available locales (list of locale codes)
  available:
    - "en_US"
    - "zh_CN"

# Database settings
database:
  # Type of database to use (currently only supports YAML)
  type: "YAML"
  # YAML database settings
  yaml:
    # File name to use for the database
    file: "database.yml"

# Cache settings
cache:
  # Enable caching
  enabled: true
  # Cache duration in seconds
  duration: 600