Oraxen中文WiKi
  • 我想说的话
  • Oraxen 版本更新
  • Oraxen 开始使用
  • Oraxen 常见问题
  • 使用方法
    • Oraxen 指令
    • Oraxen 默认物品
    • Oraxen 配方设置
  • 配置设置
    • Oraxen 基础知识
    • Oraxen 插件设置
    • Oraxen 物品制作 (基础)
    • Oraxen 物品制作 (入门)
    • Oraxen 技能
    • Oraxen 基础技能
    • Oraxen 方块
  • 兼容插件
    • BossShopPro - 商店
    • CrateReloaded - 箱子
    • MythicMobs - 定制怪物
    • TrMenu - 定制GUI界面
    • 世界生成器
      • EpicWorldGenerator
      • RealisticWorldGenerator
  • 开发
    • API接口
    • 创建你属于自己的属性
    • 添加兼容性的插件
    • 自定义材质托管服务
由 GitBook 提供支持
在本页
  • 前缀设置
  • 材质
  • 材质接收

这有帮助吗?

  1. 配置设置

Oraxen 插件设置

影响Oraxen插件通用的各种选项

上一页Oraxen 基础知识下一页Oraxen 物品制作 (基础)

最后更新于4年前

这有帮助吗?

前缀设置

你可以在插件部分更改插件的名称和前缀(在消息中使用)你也可以使用&代码来改变他们的颜色

  name: "Oraxen"
  prefix: "&8&l[&bOraxen&8&l] §7"

材质

Oraxen使用了Polymath (一个用Python编写的自定义网络服务器)

您可以在这里源代码,然后自己托管或者使用提供的实例(Atlas)。您也可以自己配置您自己的自定义托管服务

材质接收

receive:
  enabled: true

  loaded:
    actions:
      message:
        enabled: true
        # KICK / CHAT / ACTION_BAR / TITLE
        type: ACTION_BAR
        # 第一条信息出现前的延迟,单位是秒
        delay: 0
        # 只有在发送多条ACTION_BAR或TITLE类型的消息时,才需要一个句号
        period: -1
        # 点击和悬停元素只能通过使用CHAT类型来实现
        messages:
          - "&a&lResourcePack successfully loaded!"

      # 如果您需要发送命令
      commands:
        console: []
        player: []
        opped_player: []

  accepted:
    actions:
      message:
        enabled: true
        # KICK / CHAT / ACTION_BAR / TITLE
        type: TITLE
        # 第一条信息出现前的延迟,单位是秒
        delay: 0
        # 只有在发送多条ACTION_BAR或TITLE类型的消息时,才需要一个句号
        period: 3
        # 点击和悬停元素只能通过使用CHAT类型来实现
        messages:
          - "&a&lResourcePack accepted!"
          - "Thank you"
      # If you need to send commands
      commands:
        console: []
        player: []
        opped_player: []

  denied:
    actions:
      message:
        enabled: true
        # KICK / CHAT / ACTION_BAR / TITLE
        type: CHAT
        # 第一条信息出现前的延迟,单位是秒
        delay: 0
        # 只有在发送多条ACTION_BAR或TITLE类型的消息时,才需要一个句号
        period: -1
        # 点击和悬停元素只能通过使用CHAT类型来实现
        messages:
          - "<red>You refused the ResourcePack, but you need it in order to see the new items. Please </red><click:run_command:/oraxen pack><hover:show_text:\"<green>Display more informations\"><green><bold>CLICK HERE</bold></hover></click> <red>or type <bold>/o pack"
      # If you need to send commands
      commands:
        console: []
        player: []
        opped_player: []

  failed_download:
    actions:
      message:
        enabled: true
        # KICK / CHAT / ACTION_BAR / TITLE
        type: CHAT
        # 第一条信息出现前的延迟,单位是秒
        delay: 0
        # 你可以在这里输入任何东西,因为这是一个CHAT消息
        period: -1
        # 点击和悬停元素只能通过使用CHAT类型来实现。
        messages:
          - "<red>You failed to download the ResourcePack, but you need it in order to see the new items. Please </red><click:run_command:/oraxen pack getpack><hover:show_text:\"<red>/!\\ loading the resourcepack from the game can cause lags\"><red><bold>CLICK HERE</bold></hover></click> <red>to retry or type <bold>/o pack</bold> and download it from the internet"
      # 如果您需要发送命令
      commands:
        console: []
        player: []
        opped_player: []
下载