开启辅助访问      

站内搜索

搜索
热搜: 下载 1.19 1.20

Minecraft(我的世界)苦力怕论坛

[本体插件] [娱乐|信息]PostalService——很好强大的特色邮箱系统![1.7-1.11]

发表于 2020-6-10 12:26:09 | 显示全部楼层 |阅读模式 IP:广东省
插件发布
中文名: 邮箱系统
外语名: PostalService
支持版本: 1.7.x 1.8.x 1.9.x 1.10.x 1.11.x 
适用服务端: CraftBukkit Spigot 
插件类型: 娱乐 信息 
前置插件: MySQL;Vault及其经济插件;权限管理插件(如GM,PEX)
来源: 转载
原帖地址: https://www.mcbbs.net/thread-679869-1-1.html
下载地址: https://www.spigotmc.org/resources/postalservice.10434/
最后更新: 2018-8-11 11:34
本帖最后由 主世界 于 2020-6-10 12:28 编辑

PostalService
——邮箱系统

|介绍
这是一种很有趣特色的邮箱系统
它可以做到包裹寄东西,寄钱,当然也可以写信给玩家
另外,邮箱系统还支持寄经验哦
让邮箱点燃新的活跃之火
它的好处不止这些哦,请看插件特征

|功能
> 几乎是GUI形式,不用记住复杂命令
> 自带四个类型邮件 [消息,包裹,经验,金钱],另外你还可以禁用某类型右键
     - 消息Letter : 纯文字类型邮件
     - 包裹Package : 可以寄物品给朋友
     - 经验Experience : 可以寄自身的经验给朋友
     - 金钱Payment : 可以寄自己的金钱给朋友
> 可以注册箱子作为右键,单击打开邮箱
> 可以读取邮件,收到来自邮箱的信息
> 支持多世界
> 支持权限设置
     - 你想要不同权限的邮箱大小?
     - 你想要不同权限可以发不同类型右键?
     - 嗯,你可以的
> 100%可自行翻译语言
> 支持UUID
    - 玩家可以随意更改他们的名字,而不会丢失他们的邮件数据
> 安全更新
> 简单更新
    - 你可以直接点击按钮进行更新插件,无需输入命令

|图片
由于原搬作者图挂,下列图片直接引用自SpigotMC.org,很可能无法显示。




|权限&指令
命令
注释
权限
/mail如果config禁用'require mailbox',那么输入这个命令会显示菜单,反之显示命令帮助postalservice.mail.read
/mail help显示命令帮助postalservice.help
/mail 邮件类型 to:名字 message:文字例如/mail Letter to:ui_iu message:你好,收到我的信吗?
其实不需要自己写,打开邮箱点击发送邮件,点击类型它会自动帮你输入,你只需要填写名字/文字/数量
postalservice.mail.send.邮件类型
/mail 名字查看其他玩家的邮件postalservice.mail.readother
/mailbox find不知道什么作用[报错]postalservice.mailbox.find
/mailbox set
注册箱子作为邮箱
postalservice.mailbox.set
/mailbox remove点击已注册的邮箱>注销删除邮箱postalservice.mailbox.remove
/mailbox removeall删除自己注册的所有邮箱postalservice.mailbox.removeall
/mail update检查更新postalservice.update
/mail download下载最新版本插件postalservice.update
/mail reload重新加载插件postalservice.reload
/mail timezone [zoneCode]设置时区none

|配置
配置详解:

  1. #   ______________  
  2. #  |         .__. |  ___           _          _   ___                 _         
  3. #  | ._-.    |  | | | _ \ ___  ___| |_  __ _ | | / __| ___  _ _ __ __(_) __  ___
  4. #  |         '""' | |  _// _ \(_-<|  _|/ _` || | \__ \/ -_)| '_|\ V /| |/ _|/ -_)
  5. #  |     -.,-_    | |_|  \___//__/ \__|\__,_||_| |___/\___||_|   \_/ |_|\__|\___|
  6. #  |______________|
  7. #

  8. ####################
  9. # 配   置  设   置 #
  10. ####################

  11. ## 必须在数据库环境下进行,目前支持MySQL
  12. database:
  13.     user: 数据库用户名
  14.     password: 数据库密码
  15.     host: 127.0.0.1
  16.     port: 3306
  17.     database: 数据库名

  18. ## 下面自带四种类型邮件
  19. # false为禁用,true为开启
  20. #   Letters - 纯文字消息
  21. #   Package - 包裹物品
  22. #   Payment - 寄钱 (需要Vault前置以及经济插件)
  23. #   Xp      - XP经验点 (不是等级)
  24. enabled-mail-types:
  25.     letter: true
  26.     package: true
  27.     payment: true
  28.     xp: true
  29.      
  30. ## Toggle the use of UUIDs 请求翻译
  31. # If disabled, PostalService will track player data using
  32. # player names. If the server is running in offline mode,
  33. # UUIDs will automatically be disabled. To force the use of
  34. # UUIDS in offline mode, set this to "always".
  35. use-uuids: true

  36. ## 打开或关闭更新检查
  37. # 如果新版本更新,会通知玩家
  38. # 需要权限才能获得通知 postalservice.update
  39. #
  40. # 你可以开关自动下载新版本 true为开启 false为关闭
  41. # 你可以选择三种更新下载类型
  42. #   - all: 下载更新所有
  43. #   - bugfix: 只在当前版本更新bugfix
  44. #   - none: 禁用所有下载类型
  45. update-checker:
  46.     enabled: false
  47.     auto-download: none

  48. ## Turning on debug mode may reveal errors that can be used to help
  49. # solve problems.
  50. debug-mode: false


  51. ##################
  52. # 世  界  设  置 #
  53. ##################

  54. ## 跨世界邮箱
  55. # 如果你不想玩家跨世界发邮件,互通邮箱
  56. # 或者三个世界互通,两个世界的邮箱不互通
  57. # 这个可以做到
  58. # 例如 scsj和zyworld这两个世界可以互相通用邮箱
  59. # 而antoworld不可以和scsj/zyworld这两个世界互通邮箱
  60. # true为开启,false为禁用

  61. enable-world-groups: false

  62. world-groups:
  63. #    fullworld:
  64. #      - scsj
  65. #      - zyworld
  66. #
  67. #    bugwog:
  68. #      - antoworld
  69. # 需要使用时请设置enable-world-groups为true,并且使用去掉#,然后进行填改

  70. ## Here you can set certain mail types to ignore world groups and
  71. # be claimable in all worlds.
  72. # For example, say all your universes share the same economy.
  73. # In this case, you may want Payments to ignore world groups so players can
  74. # send money across universes but may want Packages to stay within world groups
  75. # so items can't be shared.
  76. mail-types-that-ignore-world-groups:
  77. #   - payment
  78. # 请求翻译
  79.   
  80. ## 黑名单世界
  81. # 列入黑名单的世界会被禁用邮箱命令和箱子
  82. # 包括发送接受邮件,打开邮箱,创建等
  83. world-blacklist:
  84.   - worldname
  85.   - aaaaworld


  86. #################
  87. # User Settings #
  88. #################

  89. ## 这是每个权限组的最大邮箱数/收件数量大小
  90. # 未给某用户组的话会默认50
  91. # This feature requires Vault. If Vault is not present, the default is used
  92. # for everyone.
  93. box-sizes:
  94.     default: 50
  95.     builder: 50
  96. #    vip: 75


  97. ## 将此设置为true,以使玩家在收件箱已满时无法接收邮件。
  98. # 如果设置为false,旧邮件将自动替换为新邮件。
  99. # 在这种情况下,旧邮件永远不会被删除
  100. # 删除其他邮件腾出空间
  101. hard-enforce-inbox-limit: true


  102. ## 启用或禁用向玩家显示未读邮件通知
  103. unread-mail-notifications:
  104.     on-receive-mail: true
  105.     on-login: true

  106. # 待翻译
  107. ####################
  108. # Mailbox Settings #
  109. ####################

  110. ## Enable or disable the Mailbox feature
  111. # Mailboxes are chests that players have registered as a Mailbox.
  112. # Clicking on these chests will open up the Postal Service main menu
  113. # GUI where players can view their inbox.
  114. # If disabled, players can type /mail to access the main menu.
  115. enable-mailboxes: true

  116. ## Enable this if you want to require players to be near a mailbox
  117. # to send mail. Enabling this will also make opening mailboxes the only
  118. # way to view the main menu GUI.
  119. require-mailbox: true

  120. ## This is the max number of mailboxes per permission group.
  121. # If a permission group is undefined, the default is used.
  122. # This feature requires Vault. If Vault is not present, the default is used
  123. # for everyone.
  124. mailbox-limits:
  125.     default: 5
  126. #    permission-group: 10


  127. #########################
  128. # Trading Post Settings #
  129. #########################
  130. ## UPCOMING FEATURE! THESE SETTINGS CURRENTLY DO NOTHING ##

  131. enable-trading-post: false

  132. require-same-mailbox: false

  133. allow-cross-world-trades: false


  134. #########################
  135. # Localization Settings #
  136. #########################

  137. ## Here you can change the pattern used to format the date and time for mail.
  138. # Learn how to format patterns: http://goo.gl/n8qMk0
  139. # Then test your pattern here: http://goo.gl/WCaX6i
  140. date-format: "MMM d, yyyy h:mm a"

  141. ## This automatically translates month and day names in the date format
  142. locale-tag: "en-US"

  143. ## Change the default time zone in which the time is displayed.
  144. # Players can also change the timezone for themselves individually
  145. # with the command: /mail timezone <zone>
  146. time-zone: "UTC"

  147. ########################################
  148. # Don't touch please
  149. config-version: 1.0
复制代码
汉化文件:
不做伸手党,汉化文件应原搬作者要求,请到原帖进行下载。

|其它
使用要求:
- 服务端 Bukkit / Spigot 1.7+
- Java 7+
- MySQL
- Vault以及经济插件[ESS/IC等]
- 权限管理插件[LuckPerm/GM/PEX等]
目前问题:
- 输入 /mail find 后台报错(个人测试)[原搬作者正在问插件作者]
- 无法使用交易中心(暂时)[作者快更新好了]

|搬运授权
“万能”搬运授权:
苦力怕论坛,感谢有您~
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

本站
关于我们
联系我们
坛史纲要
官方
哔哩哔哩
技术博客
下载
网易版
安卓版
JAVA
反馈
意见建议
教程中心
更多
捐助本站
QQ群
QQ群

QQ群

访问手机版

访问手机版

手机版|小黑屋|系统状态|klpbbs.com

粤公网安备 44200002445329号 | 由 木韩网络 提供云服务 | GMT+8, 2024-4-26 23:20

声明:本站与Mojang以及微软公司没有从属关系

Powered by Discuz! X3.4 粤ICP备2023071842号