Jump to content

crops 1.14


Guest

Recommended Posts

39 minutes ago, DrMDGG said:

"ingredient": { "tag": "marijuanacraft:alcmix1" }

Do you know how tags differ from items?

You have specified the former and your mod contains the latter.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

  • Replies 96
  • Created
  • Last Reply

Top Posters In This Topic

59 minutes ago, Draco18s said:

Yes, because:

And you've got ten more like it.

 

When data pack loading fails, it often causes all data packs to not be loaded (I had a bad advancement once that made vanilla recipes not work).

yes i see that. im not sure how to fix that though. everything is the same as it was before

Link to comment
Share on other sites

Well, I already pointed out what I think is wrong with it.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

10 hours ago, Draco18s said:

Well, I already pointed out what I think is wrong with it.

yes, thank you for that, i managed to get my smelting recipes working. 

my shaped and shapless ones still do not work.

 

{
    "type": "minecraft:crafting_shaped",
    
    "pattern":
    [
        " f ",
        " w ",
        " e "
    ],    
    
    "key":
    {
        "f": { "item": "marijuanacraft:fermp" },
        "w": { "item": "minecraft:water_bucket" },
        "e": { "item": "minecraft:bottle" }
        },
    
    "result": { "item": "marijuanacraft:alcmix1" },
    "count": 1
}

Link to comment
Share on other sites

45 minutes ago, DrMDGG said:

    "result": { "item": "marijuanacraft:alcmix1" },
    "count": 1

This is wrong. Check the documentation again.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

11 minutes ago, Draco18s said:

This is wrong. Check the documentation again.

this is the from the forge documentation:

 

{
    "type": "minecraft:crafting_shaped",
    "pattern":
    [
        "xxa",
        "x x",
        "xxx"
    ],
    "key":
    {
        "x":
        {
            "type": "forge:ore_dict",
            "ore": "gemDiamond"
        },
        "a":
        {
            "item": "mymod:myfirstitem",
            "data": 1
        }
    },
    "result":
    {
        "item": "mymod:myitem",
        "count": 9,
        "data": 2
    }
}

 

should i make them like this?

Link to comment
Share on other sites

2 hours ago, DrMDGG said:

should i make them like this?

His point was that your count wasnt inside your result json object.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

1 hour ago, Animefan8888 said:

His point was that your count wasnt inside your result json object.

i got his point...my point is that I've tried the exact example from the forge documentation and still does not work.

Link to comment
Share on other sites

39 minutes ago, DrMDGG said:

i got his point...my point is that I've tried the exact example from the forge documentation and still does not work.

Is there an item with the registry name "mymod:myitem" and "mymod:myfirstitem" in your mod? No? Then of course it doesnt work.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

11 minutes ago, Animefan8888 said:

Is there an item with the registry name "mymod:myitem" and "mymod:myfirstitem" in your mod? No? Then of course it doesnt work.

I obviously changed that when I input the code.

 

and its literally only those few recipes. all the other seem to work whether it be shaped, shapeless, or smelting

Link to comment
Share on other sites

2 minutes ago, DrMDGG said:

I obviously changed that when I input the code.

Is there anything in the console about an error? And why not show us the actual version of the json.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

1 minute ago, Animefan8888 said:

Is there anything in the console about an error? And why not show us the actual version of the json.

no, errors that I can see.

 

{
    "type": "minecraft:crafting_shaped",
    
    "pattern":
    [
        "f",
        "w",
        "e"
    ],    
    
    "key":
    {
        "f": { "item": "marijuanacraft:fermp" },
        "w": { "item": "minecraft:water_bucket" },
        "e": { "item": "minecraft:bottle" }
    },
    
    "result": { "item": "marijuanacraft:alcmix1" },
    "count": 1
}

Link to comment
Share on other sites

40 minutes ago, DrMDGG said:

    "result": { "item": "marijuanacraft:alcmix1" },
    "count": 1

So, in other words, you changed nothing and it is a surprise that it doesn't work.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

5 minutes ago, Draco18s said:

So, in other words, you changed nothing and it is a surprise that it doesn't work.

no, i copied another working recipe and filled it out appropriately. it doesn't work still. all my other recipes work though. i don't get it

Link to comment
Share on other sites

HMM.

3 hours ago, Animefan8888 said:

your count wasnt inside your result json object.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

27 minutes ago, Draco18s said:

HMM.

{
    "type": "minecraft:crafting_shaped",
    
    "pattern":
    [
        " b ",
        "mwm",
        "ece"
    ],    
    
    "key":
    {
        "b": { "item": "marijuanacraft:weed_butter" },
        "m": { "item": "minecraft:milk_bucket" },
        "w": { "item": "minecraft:wheat" },
        "e": { "item": "minecraft:egg" },
        "c": { "item": "minecraft:cocoa_beans" }
    },
    
    "result": { "item": "marijuanacraft:pot_cookie" },
    "count": 3
}

 

neither is this one and it works!

Link to comment
Share on other sites

1 hour ago, DrMDGG said:

neither is this one and it works!

A) I doubt that

B) define "works"

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

37 minutes ago, DrMDGG said:

it makes the item from a shaped recipe

Does it output the correct number?

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

20 hours ago, Draco18s said:

Does it output the correct number?

alright, I'm man enough to admit when I'm wrong.

I was looking at the wrong recipe that only makes one item because I'm an idiot.

but now, I have them running and out of the log. 

will these datafixers for my entities cause the same problem where my crop won't spawn properly?

there is also an error in there for "columb". I have deleted every trace that I could find of that block, but yet, it's still there.

 

latest log: https://pastebin.com/xnVhvP6U

Link to comment
Share on other sites

3 minutes ago, DrMDGG said:

will these datafixers for my entities cause the same problem where my crop won't spawn properly?

No datafixers exist for mods.

 

3 minutes ago, DrMDGG said:

there is also an error in there for "columb". I have deleted every trace that I could find of that block, but yet, it's still there.

You removed it and the game is complaining that it was removed when loading a world that was created before the removal. You expected something else?

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

40 minutes ago, Draco18s said:

No datafixers exist for mods.

 

You removed it and the game is complaining that it was removed when loading a world that was created before the removal. You expected something else?

nope. jjst wasnt 100% on it.

 

can we get back to my crops working or....

Link to comment
Share on other sites

I don't know what you're current problem with them is

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

26 minutes ago, Draco18s said:

I don't know what you're current problem with them is

the problem is that when the seed is planted,  it is the no texture colours and the block disappears when broken rather than breaking

 

what files do you need to see?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements




  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • SLOT MAHJONG WAYS 3 SCATTER HITAM : POLA SLOT MAHJONG 3 SCATTER HITAM HARI INI - TRIK POLA SLOT GACOR x500 SCATTER HITAM KLIK DISINI DAFTAR DISINI SLOT VVIP << KLIK DISINI DAFTAR DISINI SLOT VVIP << KLIK DISINI DAFTAR DISINI SLOT VVIP << KLIK DISINI DAFTAR DISINI SLOT VVIP << SITUS SLOT GACOR 88 MAXWIN X500 HARI INI TERBAIK DAN TERPERCAYA GAMPANG MENANG Dunia Game gacor terus bertambah besar seiring berjalannya waktu, dan sudah tentu dunia itu terus berkembang serta merta bersamaan dengan berkembangnya SLOT GACOR sebagai website number #1 yang pernah ada dan tidak pernah mengecewakan sekalipun. Dengan banyaknya member yang sudah mempercayakan untuk terus menghasilkan uang bersama dengan SLOT GACOR pastinya mereka sudah percaya untuk bermain Game online bersama dengan kami dengan banyaknya testimoni yang sudah membuktikan betapa seringnya member mendapatkan jackpot besar yang bisa mencapai ratusan juta rupiah. Best online Game website that give you more money everyday, itu lah slogan yang tepat untuk bermain bersama SLOT GACOR yang sudah pasti menang setiap harinya dan bisa menjadikan bandar ini sebagai patokan untuk mendapatkan penghasilan tambahan yang efisien dan juga sesuatu hal yang fix setiap hari nya. Kami juga mendapatkan julukan sebagai Number #1 website bocor yang berarti terus memberikan member uang asli dan jackpot setiap hari nya, tidak lupa bocor itu juga bisa diartikan dalam bentuk berbagi promosi untuk para official member yang terus setia bermain bersama dengan kami. Berbagai provider Game terus bertambah banyak setiap harinya dan terus melakukan support untuk membuat para official member terus bisa menang dan terus maxwin dalam bentuk apapun maka itu langsung untuk feel free to try yourself, play with SLOT GACOR now or never !
    • JANGKRIK4D >> SLOT DANA GOPAY OVO | SLOT GACOR GAMPANG MAXWIN X100 X250 X500  << DAFTAR JANGKRIK4D >> JANGKRIK4D SITUS SLOT PGSOFT GAMING TERPERCAYA JANGKRIK4D 🚀 SITUS PGSLOT DAN PGSOFT GAMING TERPERCAYA 🚀 – JANGKRIK4D situs pgslot paling gacor telah hadir bersama JANGKRIK4D yang karena telah memberikan berbagai macam permainan untuk mendapatkan jackpot yang besar karena sudah menjadi pioneer untuk penyedia game paling mujarab beserta jajaran pgsoft gaming terpercaya yang telah bersama dengan JANGKRIK4D menjalin kerja sama resmi serta berlisensi untuk memberikan kemenangan paling besar untuk para player yang mencoba menamatkan permainan yang telah memeberikan kemenangan fantastis saat ini. jangkrik4d slot gacor slot deposit dana demo slot gacor demo slot pg demo pg soft slot deposit gopay slot deposit pulsa slot server jepang
    • LINK DAFTAR KLIK DISINI slot deposit dana 5000 ribu via spaylater  adalah permainan slot dana gacor dengan menyediakan slot server thailand deposit dana. dan slot deposit dana adalah slot terbesar di thailand. anda cukup daftar disini dan mainkan disini slot deposit 5000 ribu via dana sudah dipastikan dengan deposit dana akan membuat akun anda menjadi akun special. situs deposit dana adalah situs yang terpercaya dan terakurat. Slot dana merupakan situs slot deposit dana yang sangat trending dan sangat dikenal luas di masyarakat. dengan adanya MAXWINBET77 anda bisa mendapatkan keuntungan besar setiap hari tanpa adanya potongan  yang pastinya menguntungkan bagi anda. situs slot dana  maxwinbet77 adalah situs slot dana terbaik 2024 dan dijamin mudah maxwin.
    • MELATI88 adalah pilihan terbaik bagi Anda yang ingin bermain slot dengan deposit pulsa tanpa potongan besar sebesar 5000. Dengan berbagai keunggulan yang kami tawarkan, kami siap memberikan Anda pengalaman bermain yang tak terlupakan. Bergabunglah dengan kami sekarang dan mulailah petualangan bermain slot yang seru dan menguntungkan!    
    • SENSASLOT adalah pilihan tepat bagi Anda yang menginginkan pengalaman bermain slot tanpa potongan besar saat deposit menggunakan Dana. Berikut adalah beberapa alasan mengapa Anda harus memilih SENSASLOT: Deposit Dana Tanpa Potongan Kami bangga menjadi salah satu situs slot pertama yang menawarkan deposit menggunakan Dana tanpa potongan besar sebesar 1000 ribu. Ini berarti Anda dapat melakukan deposit sebesar 1000 ribu dan mendapatkan seluruhnya untuk digunakan dalam permainan slot kami. Beragam Pilihan Permainan SENSASLOT menyajikan koleksi permainan slot yang beragam dan menarik dari berbagai provider terkemuka. Mulai dari tema klasik hingga yang paling modern, Anda akan menemukan banyak pilihan permainan yang sesuai dengan selera dan preferensi Anda. Kemudahan Bertransaksi Selain deposit Dana tanpa potongan besar, kami juga menyediakan berbagai metode pembayaran lainnya untuk kenyamanan Anda. Proses deposit dan penarikan dana di SENSASLOT cepat, mudah, dan aman.    
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.