这个插件提供一种独特的合成方式,使用/ecraft 这个命令,你就可以创造出属于自己服务器的史诗物品,并且支持自定义名字、颜色、附魔、(lore、权限等)完全可自定义。你可以创造一个配方至多有达15种不同原料。
现在你可以添加ItemFlag,用于隐藏物品的属性,比如攻击力之类的 |
汉化
messages.yml - # 在这里你可以修改这个插件的语言文件-汉化by wtq_
- Messages:
- prefix: '&2[&a史诗工艺&2]'
- craftMenuInventoryName: '&2&l合成 菜单 &c%current-page%&8/&c%total-pages%'
- craftItemInventoryName: '&5&l合成你的物品'
- clickToCraftItem: '&2&l点击来合成!'
- back-to-menu: '&2返回菜单'
- next-page: '&2下一页'
- previous-page: '&2上一页'
- craft: '&e合成'
- craftError: '&c你没有足够的原材料来制作!'
- craftInventoryFull: '&c你的背包已经装不下了!'
- craftSuccessful: '&b你成功合成了一个 %item-name%&a!'
- required-item-lore:
- - '&6你需要它作为原材料'
- - '&8状态: %items-you-have%&8/%items-needed%'
- consoleCommand: '&c你必须是一名玩家才能使用这条命令!'
- commandNotExists: '&c这条命令不存在!'
- noPermissions: '&c你没有权限这样做'
- pluginReload: '&e配置重载完成'
- errorCreate: '&c创造一条配方: &7/ecraft create <name>'
- craftAlreadyExists: '&c这个配方 &a%name% &c已经存在!'
- craftCreated: '&c配方 &a%name% &c创造完成!'
- errorDelete: '&c删除一个配方: &7/ecraft delete <name>'
- craftNotExists: '&c配方 &a%name% &c不存在! Use &7/ecraft list &c来查看现有配方'
- craftDeleted: '&c这个配方 &a%name% &c已经删除!'
- pageNoExists: '&c页码 &a%page% &c不存在!'
- craftsList: '&2&l合成菜单 &e[页码 &c%current-page%&8/&c%total-pages%&e]:'
- noCraftPermissions: '&c你没有权限来合成它'
复制代码
config.yml
- # EpicCraftings by Ajneb97
- # I'm new here in the creation of plugins so it is possible that you can find bugs.
- # If so, please contact with me:
- # https://www.spigotmc.org/members/ajneb97.43796/ 如果你发现了BUG可以在此贴上联系作者
- # I suggest you to use IDs instead of item names! Here you can find a list: 建议使用id不是物品名字
- # IDs: http://www.minecraftinfo.com/idlist.htm
- # Materials Link: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
- # -> decorative-menu-item / menu-previous-page-item / click-to-craft-item <- Name/ID of the item. GUI装饰物品 上一页代表物品 点击制作代表物品
- # -> firework-on-craft <- Set to true if you want to spawn a firework when a player craft an item on the plugins GUI. If not, set to false. 制作的时候生成烟花特效
- # -> Crafts (id) <- Name/ID of the item to craft. 物品id
- # -> Crafts (name) <- Here you can set a custom name for the item. You can use color codes. 物品名字,颜色代码是可用的
- # -> Crafts (lore) <- Here you can set a custom lore for the item. You can use color codes. You can remove this section if you don't want (Lore你不必须使用它)
- # a lore for the item. You can add more lines if you want.
- # -> Crafts (enchants) <- Names of the enchantments that the item will have with the level of the enchant respectively. 附魔效果
- # Here you can find a list with all the enchantments: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/enchantments/Enchantment.html
- # You can remove this section if you don't want enchantments for the item. 如果你不想要可以不用
- # -> Crafts (permission) <- Here you can add a custom permission to craft this item. 权限
- # -> Crafts (requires) <- Here you can set the items that the player will need to craft the original item. 需要的原料
- # Each line means one different item and remember to add a ';' after the ID to set the amount of this item and optional, a name and a lore.
- # 不同的物品后面加上;加上数量;名字;lore
- # For example if the 'requires option' have two lines ('264;15' and '266;10'), that means that the player will need 15 Diamonds and
- # 10 Gold Ingots to craft the original item. You can put a maximum of 15 required items.
- # Just remember: 'id;amount;name;lore-line1;lore-line2;...' (This is just for the required items).
- Config:
- decorative-menu-item: '160:3'
- menu-page-item: '262'
- click-to-craft-item: '58'
- firework-on-craft: true
- new-version-reminder: true
- Crafts:
- super_sword:
- id: '276'
- name: '&4&lSuper Sword'
- lore:
- - '&6This is one of the best'
- - '&6swords on the server!'
- enchants:
- - DAMAGE_ALL;6
- - FIRE_ASPECT;3
- requires:
- - 264;15;&bUnique Diamond;&7A legendary mineral;&7very hard to obtain..
- - 266;10
- permission: ecraft.supersword
- gold_helmet:
- id: '314'
- name: '&e&lKing Helmet'
- lore:
- - '&6Difficult to obtain, difficult to craft.'
- - '&6The &eKing Helmet &6is one of the most'
- - '&6wanted items on the server...'
- enchants:
- - PROTECTION_ENVIRONMENTAL;8
- - THORNS;8
- - OXYGEN;5
- requires:
- - 314;10
- - 322;20
- - 396;20
- - 266;50
- - 348;50
- - 351:11;60
- epic_bow:
- id: '261'
- name: '&aE&bP&cI&dC &6Bow'
- enchants:
- - ARROW_DAMAGE;4
- - ARROW_INFINITE;1
- requires:
- - 261;10
- - 265;40
- - 264;30
复制代码
|
作者: wtq_
时间: 2017-3-12 07:44
我能问一下怎么申请授权搬运的标记么
作者: 幻境雲達達
时间: 2017-3-12 07:52
注册Spigotmc账号 回复作者索要授权
作者: wtq_
时间: 2017-3-12 07:54
我在帖子顶上放着呢,你没懂我的问题诶,算了,我找到了
作者: youngklps
时间: 2017-3-12 09:01
有没有配置合成界面的GUI...讲真配置文件都是坑爹的
作者: wtq_
时间: 2017-3-12 10:01
这个插件比较新,这个在作者的计划当中
作者: 苏泽吧
时间: 2017-3-12 10:34
是个好插件,十分符合RPG生存服务器,升职可以给战争生存服务器当做枪械合成军火库了
感谢转载
作者: 15519143469
时间: 2017-3-13 00:59
天呐,免费的锻造插件,各位穷逼rpg辅助,可以下载他,抛弃插件定制了
作者: rgege
时间: 2017-3-13 10:51
用不来啦 /哭死了
作者: wtq_
时间: 2017-3-15 08:22
[1.6.0版本]更新:现在可以一次合成好几个物品,同过在配置中使用amount这个项目。
作者: 602844218
时间: 2017-3-15 16:36
如果能定义手中的物品可能会更完美。。~~~~!!!
作者: 15519143469
时间: 2017-3-15 20:50
弱弱问一句,,设置自定义合成是全程gui设置 还是需要配置设置
作者: wtq_
时间: 2017-3-15 22:23
15519143469 发表于 2017-3-15 20:50
弱弱问一句,,设置自定义合成是全程gui设置 还是需要配置设置
很不好意思,需要配置配置
作者: w1764721498
时间: 2017-3-15 22:41
很好的插件,支持
作者: 西瓜贩子
时间: 2017-3-19 22:23
我很喜欢这个插件,正好合适我的生存服插件呢

感谢楼主搬运
作者: wtq_
时间: 2017-3-25 09:58
插件更新:支持Java7
作者: 15519143469
时间: 2017-3-26 00:52
如果能游戏里配置,不用手动config 就好了,希望更新吧
作者: 602844218
时间: 2017-3-26 09:54
好是好但是有点麻烦--要去配置更改。要是直接把物品房子GUI 里面设置那就很好了!
作者: wtq_
时间: 2017-3-26 10:37
这个在作者的页面已经建议了
作者: 446472250
时间: 2017-3-26 23:44
支持,相当于玩家自己锻造武器了吧,
拿走试试

作者: wshycaa
时间: 2017-3-27 23:45
很好的插件,希望材料的name和lore能增加通配符,这样就可以设置只要带有某种名字的物品都可以用来合成,更加实用!
作者: wy5629841
时间: 2017-3-30 01:36
厉害了

作者: wy5629841
时间: 2017-3-30 01:41
更新了1.6.2可以隐藏合成装备的属性比如伤害附魔什么的了
https://hub.spigotmc.org/javadoc ... ntory/ItemFlag.html
作者: 602844218
时间: 2017-3-30 10:26
版本更新了~更新看看?
作者: wtq_
时间: 2017-3-30 12:35
本帖最后由 wtq_ 于 2017-3-30 12:50 编辑
都这么着急啊,那我马上跟进,1.6.2版本增加了隐藏物品属性的设置,用法都已经更新了
作者: wy5629841
时间: 2017-3-31 00:11
话说,玩家怎么看物品合成配方表
作者: wtq_
时间: 2017-3-31 04:08
有GUI界面
作者: wtq_
时间: 2017-4-2 06:16
度盘地址已更新,不能前往原帖的朋友可以考虑下载
作者: 萌萌啦啦
时间: 2017-4-8 09:52
谢谢楼主、辛苦楼主了,是不是可以自己换的。。
作者: 602844218
时间: 2017-4-22 10:31
版本更新了哦!快快搬运~
作者: 子德
时间: 2017-6-2 18:54
希望你能帮忙向作者反馈,希望作者加入合成出的物品的蓝字属性,比如不可破坏
作者: 迷の十六
时间: 2017-6-2 21:20
提示:
作者被禁止或删除 内容自动屏蔽
作者: 极光先生
时间: 2017-6-8 13:00
楼主你好,
我有个小小的建议,如果您能采纳的话,希望能够向原作者提一下。
希望插件能够添加一个功能,或者是指令
就是把手持的物品,上传到这个工艺系统里,包括手持物品的lore、nbt、id,等等
这样就可以省去手动配置的麻烦。能够更快的自定义服务器专属的合成系统。
如果能采纳的话,十分感谢
作者: KTR
时间: 2017-6-8 13:03
这是原作者的付费版的功能。。
作者: qq1290701843
时间: 2017-6-8 16:59
恩恩。很好的插件!
作者: 极光先生
时间: 2017-6-8 18:25
好吧!!!!
作者: 子德
时间: 2017-6-10 09:46
您好,请问这个插件有办法使合成出的物品无限耐久吗?(由于某些原因不能用附魔)
作者: 2212426297
时间: 2017-7-9 20:16
楼主为什么造出来的东西默认是附魔的。。删掉不行,换掉可以。就不能没有附魔吗???
作者: 2212426297
时间: 2017-7-9 20:33
楼主光能隐藏附魔这一类的东西没用呀要合成出没有附魔的东西呀
作者: 2212426297
时间: 2017-7-9 20:41
楼主我莫名其妙的弄好了应该是刚才没有重载插件导致的sorry
作者: 董康
时间: 2017-7-9 20:59
没有1.7.2版本可惜了qaq
作者: 神奇的滑稽
时间: 2017-7-11 08:05
那个,合成的材料支持lore判断么?
作者: TNT8
时间: 2017-8-13 21:59
重大刷道具BUG。 并且也算是个遗憾点。
比如我设置使用 10 个 388绿宝石兑换一个道具是正常的
但是如果我改成 10 个 名为&a绿宝石 的绿宝石兑换,将可以无限制兑换,兑换不会扣除道具
也就是说,这个插件不支持材料的LORE 否则将会出现无限刷的BUG
希望能让作者修复一下吧。
作者: Cu_huang
时间: 2017-8-19 01:31
自定义合成能设置多少配方
作者: duola033
时间: 2018-2-6 15:38
楼主 插件很棒 但是希望可以出随机出品质的那种

不过还是谢谢楼主的插件了
作者: 1279940774
时间: 2018-2-7 17:25
正需要!感谢分享
作者: Chone_lei
时间: 2018-5-7 13:32
大锅你的图滑稽到变形了_(:з」∠)_
作者: 749112221a
时间: 2018-8-19 11:30
请问怎么弄出皮肤 ? 我这史蒂夫看腻了....
作者: 123666363
时间: 2019-8-13 14:47
楼主,你这个咋合成之后给玩家我手中的物品,我合出来的都是原版物品。。。
作者: zxzpkcxcc
时间: 2019-8-16 12:20
好插件支持一波 就在寻找类似的插件! 先载来测试测试
作者: haoranhuang6
时间: 2019-9-30 02:30
请问版主,怎么新建一个合成种类
作者: 世予予
时间: 2019-9-30 06:47
提示:
作者被禁止或删除 内容自动屏蔽
作者: qwe1459800536
时间: 2019-11-25 20:53
为啥 我输入dz 就会打开界面?
作者: 510563849
时间: 2019-11-30 02:12
MCBBS有你更精彩~
作者: Phwan
时间: 2020-1-14 14:46
很棒的插件
作者: 74172787
时间: 2020-1-14 15:16
6666666666
作者: 乐死自认
时间: 2020-3-13 11:36
感谢楼主搬运
作者: 2721977634
时间: 2020-3-13 11:52
魔改嘿嘿嘿
作者: 三色堇Cyyy
时间: 2020-3-21 19:53
要是能设置不让玩家打开主菜单就好了
作者: duowan1s
时间: 2020-3-26 13:58
提示:
作者被禁止或删除 内容自动屏蔽
作者: 三色堇Cyyy
时间: 2020-3-28 13:53
制作物品的时候执行结束命令能否执行多条命令?老哥