Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Help me please!

 

Here is my code (it's for 1.8 forge--but am trying to do a mod for 1.9.4 and am stuck with this event handler)

 

@EventHandler

public void postInit(FMLPostInitializationEvent event)

{

if (event.getSide() == Side.CLIENT)

{

RenderItem renderItem = Minecraft.getMinecraft().getRenderItem();

renderItem.getItemModelMesher().register(key, 0, new ModelResourceLocation(MODID + ":" + "key", "inventory"));

}

}

I put in what i believe are appropriate imports

 

import net.minecraft.client.Minecraft;

 

import net.minecraft.client.renderer.entity.RenderItem;

 

import net.minecraft.client.resources.model.ModelResourceLocation;

 

import net.minecraft.enchantment.Enchantment;

 

import net.minecraft.entity.player.EntityPlayer;

 

import net.minecraft.init.Blocks;

 

import net.minecraft.init.Items;

 

import net.minecraft.item.Item;

 

import net.minecraft.item.ItemStack;

 

import net.minecraft.util.ResourceLocation;

 

import net.minecraft.util.WeightedRandomChestContent;

 

import net.minecraftforge.common.ChestGenHooks;

 

import net.minecraftforge.common.DungeonHooks;

 

import net.minecraftforge.common.MinecraftForge;

 

import net.minecraftforge.event.entity.living.LivingEvent.LivingJumpEvent;

 

import net.minecraftforge.fml.common.Mod;

 

import net.minecraftforge.fml.common.Mod.EventHandler;

 

import net.minecraftforge.fml.common.event.FMLInitializationEvent;

 

import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;

 

import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;

 

import net.minecraftforge.fml.common.eventhandler.EventPriority;

 

import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

 

import net.minecraftforge.fml.common.registry.GameRegistry;

 

import net.minecraftforge.fml.relauncher.Side;

 

and am getting these errors (see hyperlinks below)

 

Tried to adjust it with some other imports, either doesn't render texture with my icon, shows default purple/black colors. Or it just errors out at compile time with 'device not closed'.

 

Thanks!!!

 

pic1.png

pic2.png

what i did was create a new class for the rendering of my items:

 

public static void registerItemRender(){

}

public static void register(Item item){
	Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item, 0, new ModelResourceLocation(Strings.MODID + ":" + item.getUnlocalizedName().substring(5), "inventory"));

Do not use event.getSide()

 

Use proxies.

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.

  • Author

Thanks all!

 

Still couldn't get things working with postdnit() function.

 

All i want to do is have my png resident in the proper assets/modsname/textures/items folder to render

 

Here is my class file so far

 

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.item.Item;

import net.minecraftforge.fml.common.registry.GameRegistry;

 

public class ItemKey extends Item{

private String name = "key";

 

@SuppressWarnings("deprecation")

public ItemKey() {

 

GameRegistry.registerItem(this, name);

setUnlocalizedName(SamsMod.MODID + "_" + name);

setCreativeTab(CreativeTabs.MISC);

}

 

}

 

Thanks again for any continued support, been at it two days now. 

 

Best.

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.