Jump to content

recipes


Guest

Recommended Posts

hello,

 

i cant seem to figure out this one. so....

 

here's m code for Crafting,

public class CraftingManager {

 

  public static void MCraft() {

      addCraftingRec();

      addSmeltingRec();

}

 

  private static void addCraftingRec() {

      //shaped

GameRegistry.addShapedRecipe(new ItemStack(mitems.appleb), new Object[]{"AP ", "BN ", "  ", 'A', Items.apple, 'P', mitems.ppen, 'B', mitems.bbowl, 'N', mitems.nvud});

     

GameRegistry.addShapedRecipe(new ItemStack(mitems.pbong), new Object[]{"LP ", "BN ", "  ", 'L', PlasticBottle.pbot, 'P', mitems.ppen, 'B', mitems.bbowl, 'N', mitems.nvud});

      //shapeless

     

GameRegistry.addShapelessRecipe(new ItemStack(mitems.nvud, 9), new Object[]{" X ", 'X', mitems.mvud});

     

GameRegistry.addShapelessRecipe(new ItemStack(mitems.bbowl, 3), new Object[]{" B ", 'B', Items.iron_ingot});

      }

     

      private static void addSmeltingRec(){

        GameRegistry.addSmelting(Items.apple, new ItemStack(BakedApple.bapple), 5.0F);

       

      }

}

 

and heres how i am trying to register it.

 

CraftingManager.MCraft();

 

tried that in server, client, main, and a lot of variations.

 

what am i doing wrong here?

 

thanks

Link to comment
Share on other sites

What's the issue here? Is it crashing? Is it simply not showing the recipe output when you put the ingredients in the crafting grid?

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

crashed.

 

Ya know what's great?

Crash logs.

 

$20 says that you tried to register the crafting recipes before you initialized the items.

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

Your items are null.

 

$20 says that you tried to register the crafting recipes before you initialized the items.

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

You don't need the whole

new Object[] {}

syntax, as Java's varargs feature is syntactic sugar that does it for you.

 

But you still haven't addressed what I said was wrong.  Or shown otherwise.

 

Your items are null.

 

$20 says that you tried to register the crafting recipes before you initialized the items.

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

Where do you call

new

, where do you call

GameRegistry.registerItem

, when do these occur relative to

MCraft()

?

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

For future reference put code inside of

[//Code] tags, using one / instead of two

 

I don't actually see a problem with what you have posted but you should move all your registry calls into your common proxy or client proxy, it will make it much easier to read/troubleshoot and maintain. And add the code for your proxies, we can't see when you call the registerRenders.

Current Project: Armerger 

Planned mods: Light Drafter  | Ore Swords

Looking for help getting a mod off the ground? Coding  | Textures

Link to comment
Share on other sites

I just noticed that you are registering your creative tab after you try to use that tab to register your items.

 

By convention you should have something like:

public class ClientProxy extends CommonProxy {
   @Override
   public void preInit(){
      super.preInit();
      //register KeyBindings
   }

  //register renderers and other such things in the appropriate initialization method
}

public class CommonProxy {
   public void preInit(){
      //register items/blocks
   }
}

@Mod(modid = Reference.MOD_ID, name = Reference.MOD_NAME, version = Reference.VERSION)
public class MarijuanaCraft  {
   
   
   @SidedProxy(clientSide = Reference.CLIENT_PROXY_CLASS, serverSide =   Reference.SERVER_PROXY_CLASS)
    public static CommonProxy proxy;

   @EventHandler
   public void preInit(FMLPreInitializationEvent event) {
      proxy.preInit();
   }

Current Project: Armerger 

Planned mods: Light Drafter  | Ore Swords

Looking for help getting a mod off the ground? Coding  | Textures

Link to comment
Share on other sites

Ok, so now I need to see the

mitems

class, because none of the code you posted lately references it.

 

GameRegistry.addShapelessRecipe(new ItemStack(mitems.nvud, 9), new Object[]{" X ", 'X', mitems.mvud});

 

See how you make an item stack from

mitems.nvud

?  Where it nvud set to a value?  It certainly isn't happening in your

Bulb

(or other item) classes, which do the instantiation and registration (which, by the way, is terrible practice).

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

rendering is postInit()

 

so in your client proxy you could have something like this:

@Override
public void postInit(){
   registerRenderers();
}

private void registerRenderers(){
      MarijuanaBud.registerRenders();
      Light.registerRenders();
      MarijuanaPlant.registerRenders();
      MarijuanaSeed.registerRenders();
      Bong.registerRenders();
      TrashBlock.registerRenders();
      PlasticBottle.registerRenders();
      BakedApple.registerRenders();
      Shiv.registerRenders();
      ToothBrush.registerRenders();
      PlasticPen.registerRenders();
      //it would be better still if you replace these calls with something like this
      Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(Bulb.bulb, 0, new ModelResourceLocation(Reference.MOD_ID + ":" + Bulb.bulb.getUnlocalizedName(), "inventory"));
}

 

you would use something like this in your common proxy for the creative tab:

public void preInit(){
   mCreativeTab.initializeTabs();
   MarijuanaBud.MarijuanaCraft();
   Light.MarijuanaCraft();
   MarijuanaPlant.MarijuanaCraft();
   MarijuanaSeed.MarijuanaCraft();
   Bong.MarijuanaCraft();
   TrashBlock.MarijuanaCraft();
   PlasticBottle.MarijuanaCraft();
   PlasticPen.MarijuanaCraft();
   BakedApple.MarijuanaCraft();
   Shiv.MarijuanaCraft();
   ToothBrush.MarijuanaCraft();
   // I would also suggest that you rework these so that you have something like this
   GameRegistry.registerBlock(Bulb.bulb, Bulb.bulb.getUnlocalizedName());
}

Current Project: Armerger 

Planned mods: Light Drafter  | Ore Swords

Looking for help getting a mod off the ground? Coding  | Textures

Link to comment
Share on other sites

And which line is line 243?

 

Actually I don't care.

 

GameRegistry.addShapelessRecipe(new ItemStack(Bong.bbowl, 3), new Object(), " B ", 'B', Items.iron_ingot); 

 

new Object()

?  Seriously?

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

243 isn't your code, I was mistaken because I found the problem. Which you did not comment on:

 

GameRegistry.addShapelessRecipe(new ItemStack(Bong.bbowl, 3), new Object(), " B ", 'B', Items.iron_ingot); 

 

new Object()

?  Seriously?

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

i believe that is what started this whole thing.

 

thanks for the help, i edited it, and (how the hell do i know. i'm going by this and videos and websites trying to my own thing), now because of all that common proxy stuff my shit wont load at all.

Link to comment
Share on other sites

didn't notice this at first

at com.drmdgg.marijuanacraft.CraftingManager.MarijuanaCraft(CraftingManager.java:16)
   at com.drmdgg.marijuanacraft.proxy.ClientProxy.preInit(ClientProxy.java:42)

it looks like you are registering the recipe in your client proxy, you need to register it in common proxy

 

Current Project: Armerger 

Planned mods: Light Drafter  | Ore Swords

Looking for help getting a mod off the ground? Coding  | Textures

Link to comment
Share on other sites

He's not, actually.

 

He has a CommonProxy (which registers crafting) that the server proxy extends, and the client proxy extends the server proxy.

 

(The "common" part can be wholly removed and its code added elsewhere).

 

Recipes, item instantiation, item registration all of that should happen in the main mod class.  Some tutorial recently shoved it all into the proxy for no god damn reason and its made a mess of things ever since.

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

Well.  Given that the ClientProxy he posted contains an empty @Override for the PreInit method (no call to super) that code would not produce that call stack.

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

okay, so i agree, i didnt have a common proxy before, and i liked it better that way.

 

its almost working now, all my textures are back, in game, and even my creative tab is working.

 

but these damned recipes are still not working. why is it so difficult or bake a damn apple in minecraft.

 

 

Link to comment
Share on other sites

Its not.  You are registering your recipes wrong.

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

public class CommonProxy {

 

public void registerRenders() {

 

}

 

 

public void preInit(FMLPreInitializationEvent e) {

mCreativeTab.initializeTabs();

MarijuanaBud.MarijuanaCraft();

Light.MarijuanaCraft();

MarijuanaPlant.MarijuanaCraft();

MarijuanaSeed.MarijuanaCraft();

Bong.MarijuanaCraft();

TrashBlock.MarijuanaCraft();

PlasticBottle.MarijuanaCraft();

PlasticPen.MarijuanaCraft();

BakedApple.MarijuanaCraft();

Shiv.MarijuanaCraft();

ToothBrush.MarijuanaCraft();

}

 

    public void init(FMLInitializationEvent e) {

 

    }

 

    public void postInit(FMLPostInitializationEvent e) {

    CraftingManager.MarijuanaCraft();

    }

 

}

 

 

then where?

Link to comment
Share on other sites

Let me quote it again.

 

 

GameRegistry.addShapelessRecipe(new ItemStack(Bong.bbowl, 3), new Object(), " B ", 'B', Items.iron_ingot); 

 

new Object()

?  Seriously?

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

that tells me nothing considering ive been doing this for less than a month and this is day 3 or 4 or working on crafting recipes with a full time job and a family to take care of first.

 

explain it a little clearer, like (since you have all my code) this goes here and that goes there.

 

are you telling me to remove it/replace it/move it??? what?

Link to comment
Share on other sites

that tells me nothing considering ive been doing this for less than a month and this is day 3 or 4 or working on crafting recipes with a full time job and a family to take care of first.

 

explain it a little clearer, like (since you have all my code) this goes here and that goes there.

 

are you telling me to remove it/replace it/move it??? what?

 

GameRegistry.addShapelessRecipe(new ItemStack(Bong.bbowl, 3), new Object(), " B ", 'B', Items.iron_ingot); 

 

Try this:

GameRegistry.addShapelessRecipe(new ItemStack(Bong.bbowl, 3), " B ", 'B', Items.iron_ingot);

 

Notice the removal of the new Object().

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

    • Halo para penggemar slot online! Apakah Anda mencari pengalaman bermain slot yang seru dan menguntungkan? Apakah Anda ingin menikmati slot gacor dari server Thailand sambil melakukan deposit melalui Mandiri dengan kesempatan meraih kemenangan besar? Anda telah sampai di tempat yang tepat! Kami di WINNING303 siap memberikan Anda pengalaman bermain yang mengasyikkan dan menguntungkan. Mengapa Memilih WINNING303? WINNING303 telah dikenal sebagai salah satu platform terbaik untuk bermain slot dengan berbagai keunggulan yang kami tawarkan kepada para pemain kami. Berikut adalah beberapa alasan mengapa Anda harus memilih WINNING303: Slot Gacor dari Server Thailand Kami menyajikan koleksi slot gacor terbaik dari server Thailand yang pastinya akan memberikan Anda pengalaman bermain yang menarik dan menguntungkan. Nikmati berbagai jenis permainan slot dengan tingkat kemenangan yang tinggi dan jackpot yang menarik. Deposit Mudah Melalui Mandiri Kami memahami pentingnya kemudahan dalam bertransaksi bagi para pemain kami. Oleh karena itu, kami menyediakan layanan deposit melalui bank Mandiri, salah satu bank terbesar di Indonesia. Proses depositnya cepat, mudah, dan aman, sehingga Anda dapat langsung memulai petualangan bermain tanpa hambatan. Peluang Maxwin Besar Di WINNING303, kami selalu memberikan peluang untuk meraih kemenangan besar. Dengan berbagai promosi dan bonus menarik yang kami sediakan, Anda memiliki kesempatan untuk memenangkan hadiah-hadiah yang fantastis dan meraih maxwin dalam bermain slot.  
    • SLOT Ratubet77 adalah bocoran slot gacor rekomendasi dari Ratubet77 yang bisa anda temukan di SLOT Ratubet77. Situs SLOT Ratubet77 hari ini yang kami bagikan di sini adalah yang terbaik dan bersiaplah untuk mengalami sensasi tak terlupakan dalam permainan slot online. Temukan game SLOT Ratubet77 terbaik dengan 100 pilihan provider ternama yang dipercaya akan memberikan kepuasan dan kemenangan hari ini untuk meraih x500. RTP SLOT Ratubet77 merupakan SLOT Ratubet77 hari ini yang telah menjadi pilihan utama bagi pemain judi online di seluruh Indonesia. Setiap harinya jutaan pemain memasuki dunia maya untuk memperoleh hiburan seru dan kemenangan besar dalam bermain slot dengan adanya bocoran RTP SLOT Ratubet77. Tidak ada yang lebih menyenangkan daripada mengungguli mesin slot dan meraih jackpot x500 yang menggiurkan di situs SLOT Ratubet77 hari ini yang telah disediakan SLOT Ratubet77. Menangkan jackpot besar x500 rajanya maxwin dari segala slot dan raih kemenangan spektakuler di situs Ratubet77 terbaik 2024 adalah tempat yang menyediakan mesin slot dengan peluang kemenangan lebih tinggi daripada situs slot lainnya. Bagi anda yang mencari pengalaman judi slot paling seru dan mendebarkan, situs bo SLOT Ratubet77 terbaik 2024 adalah pilihan yang tepat. Jelajahi dunia slot online melalui situs SLOT Ratubet77 di link SLOT Ratubet77. DAFTAR SEKARANG DAFTAR SEKARANG DAFTAR SEKARANG
    • I am currently running the 1.20.1 Occultcraft modpack in Curseforge and am having numerous troubles making a mob farm with the apotheosis mod. When trying to modify the stats of the spawners specific stats such as the range, spawn count, and max entities reset to default after every spawn. When the spawners spawn boss mobs with certain attributes, that I'm not sure of, the building it is in explode even with mob griefing turned off. This has happened multiple times with varying sizes for the explosions. I was wonder if there is any way to disable these explosions from happening or disable boss abilities with something in the game. I also wanted to know a fix for the resetting stats on spawners and why this is happening.
    • SLOT Bank BSI adalah pilihan terbaik untuk Anda yang ingin merasakan sensasi bermain slot dengan layanan dari Bank BSI. Dengan keamanan terjamin, beragam pilihan permainan, kemudahan deposit via Bank BSI, dan berbagai bonus menarik, kami siap memberikan Anda pengalaman bermain yang tak terlupakan. Bergabunglah dengan kami sekarang dan mulailah petualangan seru Anda!    
    • Mengapa Memilih WINNING303? WINNING303 telah dikenal sebagai salah satu platform terbaik untuk bermain slot Pragmatic di Indonesia. Apa yang membuat kami unggul? Kami memiliki sejumlah keunggulan yang akan membuat pengalaman bermain Anda lebih menyenangkan. Keamanan Terjamin Keamanan adalah prioritas utama kami di WINNING303. Kami menggunakan teknologi enkripsi terbaru untuk melindungi data pribadi dan keuangan Anda. Dengan begitu, Anda dapat bermain dengan tenang tanpa perlu khawatir tentang keamanan informasi Anda. Beragam Pilihan Permainan Kami menyediakan berbagai macam permainan slot Pragmatic yang menarik dan menghibur. Mulai dari tema klasik hingga yang paling modern, Anda pasti akan menemukan permainan yang sesuai dengan selera Anda di WINNING303. Selain itu, kami juga secara teratur memperbarui koleksi permainan kami untuk memberikan pengalaman bermain yang segar dan menarik setiap saat. Kemudahan Deposit Via Bank Niaga 24 Jam Kami mengerti bahwa kenyamanan dalam bertransaksi sangatlah penting bagi para pemain. Oleh karena itu, kami menyediakan layanan deposit melalui Bank Niaga yang dapat diakses 24 jam sehari, 7 hari seminggu. Prosesnya cepat dan mudah, sehingga Anda dapat langsung memulai permainan tanpa menunggu waktu lama. Bonus dan Promosi Menarik Di WINNING303, kami selalu memberikan bonus dan promosi yang menggiurkan bagi para pemain setia kami. Mulai dari bonus selamat datang hingga bonus deposit, ada banyak penawaran menarik yang dapat Anda manfaatkan untuk meningkatkan peluang kemenangan Anda.         
  • Topics

×
×
  • Create New...

Important Information

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