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

I really hate this update xD

I already modded in 1.7 and had no problems but now my item got no texture and its name is wrong.

My codes:

main code:

http://pastebin.com/137hyyXc

Item code:

http://pastebin.com/NkBNT11M

json:

http://pastebin.com/PaAhLdfc

ย 

I hope somebody can help me. its probably something really stupid like always xD i think i wrote something in caps but i cant find the mistake :/

Im not a native speaker so plserino no haterino

  • Author

yeah i forgot about the en_US.lang :P

i couldnt find anything wrong with the names so i deleted something and downloaded the workspace from then tutorial i watched. first it worked but then i changed a bit and it stopped working. i downloaded it again but now, even if i change nothing, the item is missing. (the other items are still there)

looks like i will just delete everything and not only src. good that i still got my 1.7.10 version :P

Im not a native speaker so plserino no haterino

1.7.10 version you need to use IIcon for texture. You need a png file as assets/<your_mode_name>/textures/items/<your_item_name>.png.

ย 

This is the code for giving texture;

	@SideOnly(Side.CLIENT)
@Override
public void registerIcons(IIconRegister reg) {
	this.itemIcon = reg.registerIcon(ref.uid + ":" + (this.getUnlocalizedName().substring(5)));
}

ย 

Or you can only use this.setTextureName when you register item.

ย 

Also maybe you forgot to register item like; GameRegistry.registerItem(<item_uid>, "<item_name>");

ย 

There can be many mistakes, if you explain what the problem is and what you changed clearly, we can help you.

1.7.10 version you need to use IIcon for texture. You need a png file as assets/<your_mode_name>/textures/items/<your_item_name>.png.

ย 

This is the code for giving texture;

	@SideOnly(Side.CLIENT)
@Override
public void registerIcons(IIconRegister reg) {
	this.itemIcon = reg.registerIcon(ref.uid + ":" + (this.getUnlocalizedName().substring(5)));
}

ย 

Or you can only use this.setTextureName when you register item.

ย 

Also maybe you forgot to register item like; GameRegistry.registerItem(<item_uid>, "<item_name>");

ย 

There can be many mistakes, if you explain what the problem is and what you changed clearly, we can help you.

Please, look at the title...

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

ย 

1.12 -> 1.13 primer by williewillus.

ย 

1.7.10 and older versions of Minecraft are no longer supported due to it's age!ย Update to the latest version for support.

ย 

http://www.howoldisminecraft1710.today/

pastebin is blocked by my network server so I can't see your code, if you paste it here, I can help you better, ah sorry I answered you question for 1.7.10 because you said I still got 1.7.10 so I think you use it, ok for 1.8 my item class is this;

ย 

package net.extend.mod.functions;

import net.minecraft.client.Minecraft;
import net.minecraft.client.resources.model.ModelResourceLocation;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.Item;
import net.minecraftforge.fml.common.registry.GameRegistry;

public class additem extends Item {

public additem(int stack, String name, CreativeTabs tab, boolean craftReturn) {
	super();

	this.setMaxStackSize(stack);
	this.setCreativeTab(tab);
	this.setUnlocalizedName(name);
		if (craftReturn) {
			this.setContainerItem(this);
		}
	GameRegistry.registerItem(this, name);
}
}

ย 

I am using that way to register;

ย 

	public static Item blackDiamond;

ย 

for Preinit:

	blackDiamond = new additem(64, "blackdiamond", CreativeTabs.tabMaterials, false);

ย 

for Renders, add this to your main class;

public static void registerRender(Item item) {
	String name = ref.uid + ":" + (item.getUnlocalizedName().substring(5)); //You have to use your modid for ref.uid.
	ModelResourceLocation location = new ModelResourceLocation(name, "inventory");
	Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item, 0, location);
}

ย 

After that in init section; (Not preinit!)

	registerRender(blackDiamond);

ย 

blackdiamond.json: (extend is my mod id, you need to type there your modid.)

{
ย  ย  "parent": "builtin/generated",
ย  ย  "textures": {
ย  ย  ย  ย  "layer0": "extend:items/blackdiamond"
ย  ย  },
ย  ย  "display": {
ย  ย  ย  ย  "thirdperson": {
ย  ย  ย  ย  ย  ย  "rotation": [-90, 0, 0],
ย  ย  ย  ย  ย  ย  "translation": [0, 1, -3],
ย  ย  ย  ย  ย  ย  "scale": [0.55, 0.55, 0.55]
ย  ย  ย  ย  },
ย  ย  ย  ย  "firstperson": {
ย  ย  ย  ย  ย  ย  "rotation": [0, -135, 25],
ย  ย  ย  ย  ย  ย  "translation": [0, 4, 2],
ย  ย  ย  ย  ย  ย  "scale": [1.7, 1.7, 1.7]
ย  ย  ย  ย  }
ย  ย  }
}

  • Author

thx for ur help ^^

I already deleted everything and gonna start new after some time (exams in 2 or 3 weeks :/ ) but i am sure ur answeres will be helpfull.

Im not a native speaker so plserino no haterino

I am still having problems, here is what my item looks like in game, it is not a block it is an item like a stick

Here is my code:

texture manager http://pastebin.com/aDxGVt5t

main registry http://pastebin.com/JsaWNs4C

HarryPotterWand.json file in \src\main\resources\assets\harrypottercraft\models\item (ive tried the last folder as item and items and still no luck)

http://pastebin.com/QXtfpVJv

ref strings: http://pastebin.com/H9N83HXd

my texture is 128x128, if that is the problem is there any way I can set it to accept images of that size

You need to setUnlocalizedName in your wand class. Because textures load as a name. if your items unlocalizedname is ABC it will check ABC.json file for texture, and if you paste your wand class we can help you better, because we can't see where are you register item.

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.