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




×
×
  • Create New...

Important Information

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