Envoys - The Ultimate Supply Drop Plugin - Now With Random Locations! 5.6.3 [提交至百度][查看百度是否已收录此帖]

5020 0
2022-10-29 20:50:12
显示全部楼层
生活圈制作
Envoys - The Ultimate Supply Drop Plugin - Now With Random Locations! 5.6.3
Envoys - 终极供应掉落插件 - 现在有随机位置! 5.6.3

下载地址
提取码:338x
20
您未购买

人民币


泄密者注意:此资源由@Batuzay

捐赠 原始链接:https
://www.spigotmc.org/resources/...-drop-plugin-now-with-random-locations.20357/ 请给我一个积极的评价为感谢
捐赠:想要更多插件,请向
paypal.me/qtchan 捐赠任意金额


测试的 Minecraft 版本:
1.9、1.10、1.11 贡献者:Foallow (Idea) Envoys
是一个非常可配置的 envoy/supply drop 插件。您可以设置特使(战利品箱)的位置,每 x 秒重生一次,战利品可在配置文件中配置,或者您可以让它们在您的世界中随机生成。

命令
/Envoy - 关于命令
/Envoy Create - 在您当前的位置创建一个新的特使生成位置
/Envoy Remove [ID] - 删除一个特使,ID 都列在配置文件中及其位置
/Envoy Refill - 如果您在 /Envoy Amount 上有随机位置,则强制重新填充所有特使并生成新
特使 - 显示有多少特使
/Envoy List - 显示所有 Envoy ID、世界、X 位置、Y 位置和 Z 位置
/Envoy Reload - 重新加载配置
/Envoy SaveData - 保存数据文件 (envoys.yml)
/Envoy AddItem [Name] [Chance] - 保存您手中的项目到配置中的内容部分

Permissions
Envoys .* - 授予您访问所有权限
Envoys.Create - 授予您使用 /Envoy Create
Envoys.Remove - 授予您使用 /Envoy Remove [ID] 的权限
Envoys.Refill - 授予您使用权限 /Envoy Refill
Envoys.Amount - 授予您使用权限 /Envoy Amount
Envoys.List - 授予您使用权限 /Envoy List
Envoys.Help - 授予您使用权限 /Envoy Help
Envoys.Reload - 允许您使用 /Envoy Reload
Envoys.SaveData - 允许您使用 /Envoy SaveData
Envoys.AddItem - 允许您使用 /Envoy AddItem

Developer API
我创建了一个非常小的 API:https://www .spigotmc.org/resources/25108/

配置
Config.yml:
代码:
#DO NOT TOUCHconfig-version: 24lang:  prefix: "&8[&4Envoys&8] &4" #The prefix to all messages  no-permission: "You do not have permission for this" #No permission  setup-finished: "Envoy setup successfully" #When an envoy is successfully created  not-a-valid-id: "That ID does not exist / is not valid" #When you try to remove an envoy but there is no envoy with the ID you specified  removed-envoy: "Successfully removed envoy." #When an envoy is successfully removed  envoys-refilled: "ALL ENVOYS HAVE BEEN REFILLED" #When envoys are refilled  amount: "There are %amount envoys (%worldAmount in your world)" #The response to the ammount sub-command  list: "%id - World: %world X: %x Y: %y Z: %z" #The response to the list sub-command  random-envoy-locations: "An envoy spawned at X: %x Y: %y Z: %z!" #If random-location.broadcast-locations is set to true, for every random envoy spawned, this message will be displayed  reload: "Reloaded successfully"  data-saved: "Data file saved successfully"  invalid-syntax: "Invalid syntax, type /envoys help for help"  add-item-no-name-or-chance: "You must specify a name and a chance" #If /envoys additem is entered with 0 or 1 arguments  no-item-in-hand: "You must have an item in your hand" #If /envoys additem is entered without an item in the user's hand  name-already-exists: "This name already exists in the config" #If /envoys additem is entered and the name specified already exists under contents in the config  added-item: "Successfully added item" #When an item is successfully added to the contentscontents:  my_item_1:    chance: 70    id: 276    data: 0    name: '&4My &9Item'    amount: 3    lore:    - '&3Lore &4Line &21'    - '&3Lore &4Line &12'    enchants:    - 'DAMAGE_ALL,5'    - 'FIRE_ASPECT,3'  another_item:    chance: 32    id: 364    data: 0    name: 'Another item'    amount: 64    lore:    enchants:  token:    chance: 78.9    id: 339    data: 0    name: '&9Token'    amount: 1    lore:    - '&3This is a crate token'    - '&eRight click a crate to open it'    enchants:    - 'ARROW_INFINITE,10'envoys-refilled-by-command-only: false #Should the envoys reset after a set amount of time or only be reset by a command?envoy-refill-delay: 1800 #How often the envoys refill, in secondsrandom-location: #Envoys can be created at random locations each time  enabled: false #To enable random envoys, set this to true  amount: 50 #The amount of random envoys you would like created each time  min-xz: -10000 #The random envoys will be spawned between this...  max-xz: 10000 #and this.  always-on-top: true #If set to true, the envoys will always spawn at the highest block so they are not underground  custom-y: 200 #If always-on-top is set to false, the envoys will be spawned at this y level  disabled-worlds: #You can disable random envoys for specific worlds  - 'world1'  - 'exampleWorld'  broadcast-locations: false #If set to true, the locations of random envoys will be broadcasted.  only-refill-random-location-envoys: false #If set to true, only random location envoys will be spawned every x seconds (set in envoy-refill-delay)  delete-old-envoys: true #If set to true, when new random envoys spawn, the old ones will be deleted.float: true #If set to true, random envoys that spawn in water will always float at the top.

“随机位置”部分适用于您希望特使在世界各地随机生成的情况。对于“always-on-top”行,如果您希望特使始终位于最高块,请将其设置为 true。对于“custom-y”行,您可以指定是否希望特使始终在一个 y 坐标处生成(例如,如果您希望浮动特使),您必须为此设置“always-on-top”为真。

更新
1.12.1 -> 1.12.2:插件会自动更新配置。

1.11 -> 1.12:插件会自动更新配置。

1.10 -> 1.11:插件会自动更新配置。

1.9.1 -> 1.10:插件会自动更新配置。

1.8.5 -> 1.8.8:插件会自动添加
lang.data-保存到配置文件。除非您想更改消息,否则无需手动干预。
您需要将 data.yml 重命名为 envoys.yml

1.8.3 -> 1.8.4:插件会自动将envoys-refill
-by-command-only 添加到配置文件中。除非您想更改消息,否则无需手动干预。

1.7 -> 1.8:插件会自动将 lang.reload 添加到配置文件中。除非您想更改消息,否则无需手动干预。

如果您不是从第二个最新版本更新到最新版本,请将您的 config.yml.old 文件转换为 config.yml 中的新文件!

问题和错误
如果您对发现任何错误有任何疑问,请私信我,我会在 24 小时内(99% 的时间)回复您

TOS
  • 所有购买都是最终的
  • 您不会共享此资源
  • 您只能在 1 个网络上运行此资源
  • 您可以修改源代码,但您不会得到任何支持
  • 资源按“原样”提供,不提供任何保证
  • 我没有义务更新此资源(但这并不意味着我不会)
执照
剧透:执照Premium Plugin License Version 1 (PPLv1)

0. ADDITIONAL DEFINITIONS
"This license" refers to version 1 of the Premium Plugin License (PPL), this edition is refered to as PPLv1

“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.

"This software" refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations.

"This plugin" refers to this software, and or any parts of it

“修改”作品意味着以需要版权许可的方式复制或改编作品的全部或部分,而不是制作精确的副本。由此产生的作品被称为早期作品的“修改版”或“基于”早期作品的作品。

“最终用户”是指在其服务器上安装软件的任何人、该软件的任何被许可人或下载此笔记本电脑的任何人

“作者”是指该软件的作者

“服务器”是指最终用户的游戏服务器(通常是 Minecraft ),无论对其进行了何种修改

1. 许可
此许可允许最终用户在商业上使用此插件的功能并对其进行修改以供私人使用。

分发权限包含在 2 中。

您必须诚实地评估您的行为是否违反了本许可协议

2. 分发
本许可不允许除作者以外的任何人分发副本或修改。

所有分发的副本或修改必须在此页面上分发:https

://www.spigotmc.org/resources/20357/ 3. 责任
作者不对任何损害负责

最终用户始终对所有损害负责(包括但不限于数据丢失、持续丢失或无法与其他软件一起运行)

4. 保证
本软件在法律允许的范围内分发,不提供保证。

This software is provided "as is", without warranty of any kind, either expressed or implied.

5. LAWS
This software is applicable to the local laws of England.

6. AGREEMENT
The end user automatically agrees to this license by running this software on their server.








手机扫码浏览