本帖最后由 爱国民主 于 2018-3-4 15:04 编辑


  • 首页

上面的目录是可以点击
可能存在延迟


  • 介绍

Inventory Sync插件是一款支持跨服同步玩家库存和数据,在Sponge论坛是很火的插件
如果你想运用在蹦极BungeeCord上,并且同步库存和数据(可选),这个插件是不错的选择

  • 同步库存和数据
当玩家离开服务器后,会自动将玩家库存和数据储存到数据库中
当玩家加入服务器后,会自动从数据库中读取并给玩家分配库存和数据

  • 同步数据类型
  • 库存
  • 穿戴
  • 血量
  • 饥饿
  • 经验等级
  • 游戏模式
  • 药水效果(有些药水无法正常同步,点击阅读

  • 可以在自定义配置
  • 以上默认全部开启


  • 支持数据库类型
  • MySQL(也是MariaDB)
  • H2(文本储存,不推荐)


  • 命令



  • 权限
权限 描述
invsync 全部权限
invsync.sync 同步所有数据类型
invsync.sync.inventory 同步库存
invsync.sync.ender_chest 同步穿戴
invsync.sync.game_mode 同步游戏模式
invsync.sync.experience 同步经验等级
invsync.sync.health 同步血量
invsync.sync.hunger 同步饥饿
invsync.sync.potion_effects 同步药水效果

  • 配置

配置所在位置 config\invsync\invsync.conf
  1. global {
  2.     # 等待其它服务器完成读入写入数据最大时间
  3.     # 以毫秒为单位
  4. global {
  5.     # 等待其它服务器完成读入写入数据最大时间
  6.     # 以毫秒为单位
  7.     # 如果同步失败,请增大数字
  8.     maxWait=1000
  9. }

  10. # 同步类型
  11. synchronize {
  12.     enableInventory=true
  13.     enableEnderChest=true
  14.     enableGameMode=true
  15.     enableExperience=true
  16.     enableHealth=true
  17.     enableHunger=true
  18.     enablePotionEffects=true
  19. }

  20. storage {
  21.     # 选择存储方式
  22.     # 选择:h2 或 mysql
  23.     storageEngine="h2"
  24.    
  25.     # 存储方式h2的设置
  26.     h2 {
  27.         # 将存储文件存在哪里,可以选择相对路径或绝对路径
  28.         # 如果在多台服务器同步使用时,推荐使用绝对路径
  29.         databaseFile="inventoryStorage.db"
  30.     }
  31.    
  32.     # 存储方式mysql的设置
  33.     MySQL {
  34.         # 数据库IP
  35.         host="localhost"
  36.         # 数据库端口
  37.         port=3306
  38.         # 数据库名
  39.         database="invsync"
  40.         # 数据库用户
  41.         user="invsync"
  42.         # 数据库密码
  43.         password="sup3rS3cur3Pa55w0rd!"
  44.         # 数据库表前缀
  45.         tablePrefix="invsync_"
  46.     }
  47. }
复制代码


  • 反馈建议和错误

如果你有建议或发现错误
请前往此处反馈:https://github.com/AuraDevelopmentTeam/InvSync/issues


  • 支持作者

如果你想支持作者的团队
可以去此处看看:https://www.patreon.com/AuraDev


  • bStats

这个插件使用了bStats来收集插件数据
使作者更好地开发插件
如果你想关闭,可以在 config\bStats\config.conf 关闭


  • 下载

原贴下载:https://ore.spongepowered.org/BrainStone/Inventory-Sync/versions
插件适用于Sponge服务端