945
收录服务器
1220
注册
30 582
玩家
Extended Inventory 扩展背包
您是否曾经想要在您的库存中拥有更多空间?
作 者 Flocrafter77
发布时间 2017年1月9日
支持核心 Spigot
原生版本
支持版本 1.8,1.9,1.10,1.11
点此下载

📦 ExtendedInventory 插件

ExtendedInventory 是一款轻量级的 Minecraft 插件,旨在扩展玩家的物品栏空间。它允许玩家拥有多个物品栏页面,并通过 SQL 或 FlatFile 进行数据存储。插件高度可配置,支持设置普通玩家和高级玩家的页面数量限制,并可选择死亡时是否掉落所有页面的物品。

⚙️ 安装

只需将下载的 jar 文件放入服务器的 plugins 文件夹中,然后重启服务器即可。

🗂️ 文件

Config.yml


#################################################
#                                               #
#  Plugin made by HyChrod, Version: 1.0.0      #
#                                               #
#################################################

ExtendedInventory:
  Prefix: "&6EInventory &7|"
  CheckForUpdates: true

  Options:
    # This is the limit of pages, normal players will have
    SiteLimit: 5
    # This is the limit of pages, players with special permission have
    # Permission:
    # - ExtendedInventory.MorePages
    PremiumSiteLimit: 8
    # If this is enabled, the player will drop the items oh all inventorys when he dies
    # If this is disabled, he only drops the items from his current page
    DropAllPages: false

  InventoryItems:
    NextPage:
      Name: "&6Next Page"
      ItemID: "262:0"
      # You can split the lines with: "//"!
      Lore: ""
      InventorySlot: 27
    PreviousPage:
      Name: "&6Pevious Page"
      ItemID: "262:0"
      # You can split the lines with: "//"!
      Lore: ""
      InventorySlot: 36
    PlaceholderItems:
      ItemID: "160:7"
      InventorySlots:
      - 18

#################################################
#                                               #
#  You are not authorized to sell this plugin    #
#  All rights reserved by HyChrod, 2017.        #
#                                               #
#################################################

Messages.yml


# Here you can change all the messages to your wishes!
Messages:
  AlreadyOnFirstPage: "%PREFIX% &cYou are already on the first page!"
  NoMorePages: "%PREFIX% &cThere are no more pages!"
  SwitchPage: "%PREFIX% &aYour are now on page &3%PAGE%"

MySQL.yml


MySQL:
  Enable: false
  Host: "yourHost"
  Port: "3306"
  Database: "yourDatabase"
  Username: "yourUsername"
  Password: "yourPassword"