1 288
收录服务器
1 772
注册
32 797
玩家
CratesPlus 免费箱子插件
一个免费的和伟大的板条箱插件Minecraft
作 者 ConnorLinfoot
发布时间 2015年3月18日
支持核心 Spigot
原生版本
支持版本 1.8,1.9,1.10,1.11,1.12,1.13,1.14,1.15,1.16
点此下载

CratesPlus 是一款自定义箱子插件,允许服务器管理员创建具有自定义奖励的特殊箱子。玩家可以使用钥匙打开这些箱子,赢取物品和奖励。插件提供游戏内编辑、物品几率设置、开箱广播、烟花效果等功能,方便易用,支持多种命令和全息显示。

🎉 CratesPlus

🛠️ 插件信息

CratesPlus 已经停止更新和维护。 更多信息请查看此处

CratesPlus 按原样提供,不保证提供任何支持。在 Spigot 的讨论选项卡中发帖可能会得到其他用户的帮助,但获得我帮助的最佳途径是在 GitHub 上,尽管由于忙于其他事情,我不保证会回复。

关于 1.7 的说明:CratesPlus 应该可以与 Bukkit 1.7 一起使用,但未针对此版本进行测试。如果发生重大问题,您可以提出问题,但不保证会修复。

有关配置、调试等方面的帮助,请查看新的 wiki:https://github.com/ConnorLinfoot/CratesPlus/wiki

✨ 主要特性

  • 自定义箱子!
  • 游戏内编辑!
  • 物品百分比/几率!
  • 开特定箱子时广播消息
  • 开特定箱子时燃放烟花
  • 玩家无钥匙开箱时击退效果
  • 禁止放置钥匙
  • 中奖时显示 GUI 界面
  • 简单易用,方便设置,适用于投票系统!
  • 支持多个中奖命令!
  • 箱子上方的全息标题,支持 Individual Holograms 或 Holographic Displays 插件。
  • 自定义箱子开启方式!请在此处查看已知开启方式的列表。

完整的配置示例(包含注释)可以在此处找到,以帮助您配置插件,包括权限、百分比/几率、命令、方块等示例。

建议不要在使用游戏内 GUI 编辑配置文件。由于游戏内 GUI 不支持与配置相同范围的功能,因此数据将丢失。GitHub 上还有一个 Wiki,其中包含有关该插件的一些文档。

🎮 命令

  • /crate settings - 允许你在游戏内编辑箱子的奖励。
  • /crate reload - 重新加载 CratesPlus 的配置文件。
  • /crate create <name> - 创建一个新的箱子。
  • /crate rename <old> <new> - 重命名一个箱子。
  • /crate delete <name> - 删除一个箱子。
  • /crate crate <type> [player] - 获得一个可以放置的箱子,放置在服务器出生点等保护区域。
  • /crate key <player/all> [type] - 给予玩家(或所有玩家)一个可以打开箱子的钥匙。适用于商店和投票系统。

🔑 权限

  • cratesplus.admin - 访问所有 /crate 命令。默认为 OP。
  • cratesplus.updates - 拥有此权限的任何玩家都将收到更新通知。默认为 OP。

在发布建议之前,请查看 GitHub 存储库上的待办事项列表!发布已经在 git 中提出的建议将被驳回!

GitHub: https://github.com/ConnorLinfoot/CratesPlus

⚙️ 示例配置


Settings:
  Crate-Knockback: true
  Crate-Fireworks: true
  Key-Format: '&bCrate Key'
  Prefix: '&b[&cCratesPlus&b] '
  Keys:
    Physical: false
    Unbreakable: true
  Hologram:
    Enabled: true
    Type: 'INDIVIDUAL'
    Offset: 1.0
    First-Line: '&b&lCrate'
    Second-Line: '&e&lRight Click to Open'
Crates:
  ExampleCrate:
    CrateType: RARE
    Block: CHEST
    Name: '&bExample Crate'
    DisplayName: '&bExample Crate'
    Key: 'ExampleKey'
    Hologram:
      Enabled: true
      First-Line: '&a&lExample'
      Second-Line: '&b&lCrate'
    Win-Broadcast: true
    Firework: true
    Opening:
      Sound: ENTITY_GENERIC_EXPLODE
      Particle: EXPLOSION_HUGE
    Prizes:
      '1':
        DisplayItem: STONE
        Chance: 50
        Commands:
          - 'give %player% stone 10'
          - 'broadcast %player% got stone!'
        Messages:
          - '&aYou won some stone!'
      '2':
        DisplayItem: DIAMOND
        Chance: 10
        Commands:
          - 'give %player% diamond 1'
        Messages:
          - '&aYou won a diamond!'
      '3':
        DisplayItem: GOLD_INGOT
        Chance: 30
        Commands:
          - 'give %player% gold_ingot 5'
        Messages:
          - '&aYou won some gold!'
      '4':
        DisplayItem: IRON_INGOT
        Chance: 10
        Commands:
          - 'give %player% iron_ingot 5'
        Messages:
          - '&aYou won some iron!'
  VoteCrate:
    CrateType: NORMAL
    Block: ENDER_CHEST
    Name: '&aVote Crate'
    DisplayName: '&aVote Crate'
    Key: 'VoteKey'
    Hologram:
      Enabled: true
      First-Line: '&a&lVote'
      Second-Line: '&b&lCrate'
    Win-Broadcast: true
    Firework: false
    Prizes:
      '1':
        DisplayItem: DIAMOND_SWORD
        Chance: 25
        Commands:
          - 'give %player% diamond_sword 1'
        Messages:
          - '&aYou won a diamond sword!'
      '2':
        DisplayItem: DIAMOND_PICKAXE
        Chance: 25
        Commands:
          - 'give %player% diamond_pickaxe 1'
        Messages:
          - '&aYou won a diamond pickaxe!'
      '3':
        DisplayItem: DIAMOND_AXE
        Chance: 25
        Commands:
          - 'give %player% diamond_axe 1'
        Messages:
          - '&aYou won a diamond axe!'
      '4':
        DisplayItem: DIAMOND_SPADE
        Chance: 25
        Commands:
          - 'give %player% diamond_shovel 1'
        Messages:
          - '&aYou won a diamond shovel!'