本帖最后由 Wwn_Xxy 于 2022-6-25 06:06 编辑
有咩有大佬会编辑1.16.5傻瓜式农贸市场Farming for Blockheads 新建买卖交易文档的啊?要求:出售火药、金锭、钻石。火药价格铁锭X1、金锭价格铁锭X3、钻石价格铁锭X5 这样的一个格式 。
弄好了 可以吧文档用网盘 留言发我 就行。 如果不明白的可以问我
有咩有大佬会编辑1.16.5傻瓜式农贸市场Farming for Blockheads 新建买卖交易文档的啊?要求:出售火药、金锭、钻石。火药价格铁锭X1、金锭价格铁锭X3、钻石价格铁锭X5 这样的一个格式 。
弄好了 可以吧文档用网盘 留言发我 就行。 如果不明白的可以问我
本帖最后由 Wwn_Xxy 于 2022-6-25 17:44 编辑
哦哦谢谢,如果我想把交易的货币换成其他模组里面的某个物品 怎么设置呀?
还有怎么把默认的 种子和树苗交易隐藏或者覆盖删除呢?
MEMZJJY 发表于 2022-6-25 10:57
去掉txt后缀,放到config\farmingforblockheads文件夹里面
哦哦谢谢,如果我想把交易的货币换成其他模组里面的某个物品 怎么设置呀?
还有怎么把默认的 种子和树苗交易隐藏或者覆盖删除呢?
Wwn_Xxy 发表于 2022-6-25 17:35
哦哦谢谢,如果我想把交易的货币换成其他模组里面的某个物品 怎么设置呀?
还有怎么把默认的 种子和树苗交 ...
意思是把自带交易全部删除,然后新建一个分类,存放自定义交易?
MEMZJJY 发表于 2022-6-25 17:55
意思是把自带交易全部删除,然后新建一个分类,存放自定义交易?
嗯,是的大佬不要模组自带的这些分类。
MEMZJJY 发表于 2022-6-25 17:55
意思是把自带交易全部删除,然后新建一个分类,存放自定义交易?
大佬你文档可以新建一个交易分类,里面包括 火药、黄金、钻石。然后交易货币用 一个其他模组里面的物品代替 用这样举例方式做个文档 我看看 是什么结构的
MEMZJJY 发表于 2022-6-25 17:55
意思是把自带交易全部删除,然后新建一个分类,存放自定义交易?
或者有没有1.16.5 适合整合包 作商人的 供玩家 可以交易 一些 物品的 模组呢
本帖最后由 MEMZJJY 于 2022-6-25 18:14 编辑
复制代码"icon": {
"item": "minecraft:tnt"
}
这里的minecraft:tnt是分类的图标,可以改成其他模组物品的id
customEntries
里面最尾加上
复制代码比如加之前是
复制代码加后是复制代码必须要确保json格式正确,可以用json.cn来看json格式对不对
补充,第1个代码是要粘贴进json里面的,在第1个上面改,后边是示范用
- {
- "groupOverrides": {
- "Vanilla Seeds": {
- "enabled": false
- },
- "Vanilla Saplings": {
- "enabled": false
- },
- "BiomesOPlenty Flowers": {
- "enabled": false
- },
- "BiomesOPlenty Saplings": {
- "enabled": false
- },
- "Pam's HarvestCraft 2 Crops Seeds": {
- "enabled": false
- },
- "Pam's HarvestCraft 2 Trees Saplings": {
- "enabled": false
- },
- "SimpleFarming Saplings": {
- "enabled": false
- },
- "SimpleFarming Seeds": {
- "enabled": false
- },
- "Animal Eggs": {
- "enabled": false
- },
- "Bone Meal": {
- "enabled": false
- },
- "Vanilla Flowers": {
- "enabled": false
- },
- "Vanilla Mushrooms": {
- "enabled": false
- }
- },
- "customCategories": {
- "custom": {
- "name": "这里写分类的名字",
- "icon": {
- "item": "minecraft:tnt"
- }
- }
- },
- "customEntries": [
- {
- "output": {
- "item": "minecraft:gunpowder"
- },
- "payment": {
- "item": "minecraft:iron_ingot"
- },
- "category": "custom"
- },
- {
- "output": {
- "item": "minecraft:gold_ingot"
- },
- "payment": {
- "item": "minecraft:iron_ingot",
- "count": 3
- },
- "category": "custom"
- },
- {
- "output": {
- "item": "minecraft:diamond"
- },
- "payment": {
- "item": "minecraft:iron_ingot",
- "count": 5
- },
- "category": "custom"
- }
- ]
- }
"item": "minecraft:tnt"
}
这里的minecraft:tnt是分类的图标,可以改成其他模组物品的id
customEntries
里面最尾加上
- {
- "output": {
- "item": "得到的物品id",
- "count": 得到物品的数量(无双引号)
- },
- "payment": {
- "item": "货币id",
- "count": 货币数量(无双引号)
- },
- "category": "custom"
- }
- {
- "groupOverrides": {
- "Vanilla Seeds": {
- "enabled": false
- },
- "Vanilla Saplings": {
- "enabled": false
- },
- "BiomesOPlenty Flowers": {
- "enabled": false
- },
- "BiomesOPlenty Saplings": {
- "enabled": false
- },
- "Pam's HarvestCraft 2 Crops Seeds": {
- "enabled": false
- },
- "Pam's HarvestCraft 2 Trees Saplings": {
- "enabled": false
- },
- "SimpleFarming Saplings": {
- "enabled": false
- },
- "SimpleFarming Seeds": {
- "enabled": false
- },
- "Animal Eggs": {
- "enabled": false
- },
- "Bone Meal": {
- "enabled": false
- },
- "Vanilla Flowers": {
- "enabled": false
- },
- "Vanilla Mushrooms": {
- "enabled": false
- }
- },
- "customCategories": {
- "custom": {
- "name": "这里写分类的名字",
- "icon": {
- "item": "minecraft:tnt"
- }
- }
- },
- "customEntries": [
- {
- "output": {
- "item": "minecraft:gunpowder"
- },
- "payment": {
- "item": "minecraft:iron_ingot"
- },
- "category": "custom"
- },
- {
- "output": {
- "item": "minecraft:gold_ingot"
- },
- "payment": {
- "item": "minecraft:iron_ingot",
- "count": 3
- },
- "category": "custom"
- }
- ]
- }
- {
- "groupOverrides": {
- "Vanilla Seeds": {
- "enabled": false
- },
- "Vanilla Saplings": {
- "enabled": false
- },
- "BiomesOPlenty Flowers": {
- "enabled": false
- },
- "BiomesOPlenty Saplings": {
- "enabled": false
- },
- "Pam's HarvestCraft 2 Crops Seeds": {
- "enabled": false
- },
- "Pam's HarvestCraft 2 Trees Saplings": {
- "enabled": false
- },
- "SimpleFarming Saplings": {
- "enabled": false
- },
- "SimpleFarming Seeds": {
- "enabled": false
- },
- "Animal Eggs": {
- "enabled": false
- },
- "Bone Meal": {
- "enabled": false
- },
- "Vanilla Flowers": {
- "enabled": false
- },
- "Vanilla Mushrooms": {
- "enabled": false
- }
- },
- "customCategories": {
- "custom": {
- "name": "这里写分类的名字",
- "icon": {
- "item": "minecraft:tnt"
- }
- }
- },
- "customEntries": [
- {
- "output": {
- "item": "minecraft:gunpowder"
- },
- "payment": {
- "item": "minecraft:iron_ingot"
- },
- "category": "custom"
- },
- {
- "output": {
- "item": "minecraft:gold_ingot"
- },
- "payment": {
- "item": "minecraft:iron_ingot",
- "count": 3
- },
- "category": "custom"
- },
- {
- "output": {
- "item": "得到的物品id",
- "count": 得到物品的数量(无双引号)
- },
- "payment": {
- "item": "货币id",
- "count": 货币数量(无双引号)
- },
- "category": "custom"
- }
- ]
- }
补充,第1个代码是要粘贴进json里面的,在第1个上面改,后边是示范用
思.....................