Jump to content

Recommended Posts

Posted

Hello,

 

I am working on updating my mod to 1.10.2 from 1.7.10, but i got stuck in one position.

 

Here is code from my mod in 1.7.10 version which i would like to update :

 

public abstract class ItemsFirst extends Item {

protected final int ITEM_MAX;
private final String subid;

public ItemsFirst(String subId, int max) {
	super();
	subid = subId;
	ITEM_MAX = max;
	setHasSubtypes(true);
	setUnlocalizedName(ModThings.MODID + "_" + subid);
}

@SideOnly(Side.CLIENT)
private IIcon[] icons;

@SideOnly(Side.CLIENT)
@Override
public void registerIcons(IIconRegister register) {
	icons = new IIcon[iTEM_MAX];
	for (int i = 0; i < ITEM_MAX; i++) {
		icons[i] = register.registerIcon(ModThings.MODID + ':' + subid + '/' + i);
	}
}

@Override
public String getUnlocalizedName(ItemStack is) {
	return super.getUnlocalizedName() + "_" + is.getItemDamage();
}

@Override
@SideOnly(Side.CLIENT)
public IIcon getIconFromDamage(int dv) {
	if ((dv >= 0) && (dv < ITEM_MAX)) {
		return icons[dv];
	}
	return null;
}

@SideOnly(Side.CLIENT)
@Override
public void getSubItems(Item item, CreativeTabs tab, List list) {
	for (int i = 0; i < ITEM_MAX; i++) {
		list.add(new ItemStack(this, 1, i));			
	}
}

}

 

public class LootsOfItems extends ItemsFirst {
public LootsOfItems() {
	super("items", 28);
}
}

 

Here is the code which i made already on 1.10.2:

 

public class ItemThings extends Item implements ItemModelRegister {

protected String name;
protected int liczba;

public ItemThings(String name, int liczba) {
	this.name = name;
	this.liczba = liczba;
	setUnlocalizedName(ModThings.MODID + "_" + name);
	setRegistryName(name);
	setHasSubtypes(true);

	setCreativeTab(ThingsMod.creativeTab);
}

@Override
public void registerItemModel(Item item) {
	ThingsMod.proxy.registerThingNormal(item, 0, name);
}

@Override
public ItemThings setCreativeTab(CreativeTabs tab) {
	super.setCreativeTab(tab);
	return this;
}

@SideOnly(Side.CLIENT)
@Override
public void getSubItems(Item item, CreativeTabs tab, List list) {
	for (int i = 0; i < liczba; i++) {
		list.add(new ItemStack(this, 1, i));			
	}
}

@Override
public String getUnlocalizedName(ItemStack is) {
	return super.getUnlocalizedName() + "_" + is.getItemDamage();
}

}

 

public interface ItemModelRegister {

void registerItemModel(Item item);

}

 

public class ItemThings extends Item implements ItemModelRegister {

protected String name;
protected int liczba;

public ItemThings(String name, int liczba) {
	this.name = name;
	this.liczba = liczba;
	setUnlocalizedName("ThingsMod_" + name);
	setRegistryName(name);
	setHasSubtypes(true);

	setCreativeTab(ThingsMod.creativeTab);
}

@Override
public void registerItemModel(Item item) {
	ThingsMod.proxy.registerThingNormal(item, 0, name);
}

@Override
public ItemThings setCreativeTab(CreativeTabs tab) {
	super.setCreativeTab(tab);
	return this;
}

@SideOnly(Side.CLIENT)
@Override
public void getSubItems(Item item, CreativeTabs tab, List list) {
	for (int i = 0; i < liczba; i++) {
		list.add(new ItemStack(this, 1, i));			
	}
}

@Override
public String getUnlocalizedName(ItemStack is) {
	return super.getUnlocalizedName() + "_" + is.getItemDamage();
}

}

 

public class ItemNormal extends ItemThings {

private String ItemName;

public ItemNormal(String name, String ItemName, int liczba) {
	super(ItemName, liczba);
	maxStackSize = 64;

	this.ItemName = ItemName;
}

}

 

Here is my registry class 1.10.2:

 

public class ManagerItems {

public static ItemThings ItemNormal;

public static void init() {
	ItemNormal = register(new ItemNormal("ItemThingNormal", "ItemThingNormal", 3));
}

private static <T extends Item> T register(T item) {
	GameRegistry.register(item);
	if (item instanceof ItemModelRegister) {
		((ItemModelRegister)item).registerItemModel(item);
	}
	return item;
}

}

 

Can you take a look and tell me what should i change or add to make that it will load specify in minecraft 1.10.2 texture for specify number of sub item?

 

Or maybe you have idea how to just update 1.7.10 code to work fine in 1.10.2?

 

Sorry for my english but you should know what i am talking about xD

 

Posted

You need to call

ModelLoader.setCustomModelResourceLocation

to set the model for each metadata value of the

Item

.

 

Consider creating an enum to store the metadata value, unlocalised name and other properties of each sub-item. For examples, look at

ItemFishFood

/

ItemFishFood.FishType

and

ItemDye

/

EnumDyeColor

.

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.

Posted

Ok i will check that classes.

 

I probably got it and found line which i need to add :

 

    @SideOnly(Side.CLIENT)
    public void initModel() {
        ModelLoader.setCustomModelResourceLocation(this, 0, new ModelResourceLocation(getRegistryName(), "inventory"));
}

Posted

By the way, BaXMultigaming, you PMed me with an issue a few days ago.

 

Step 1: Read my signature.

Step 2: Clear out your inbox, it is full.

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.

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

    • It is a rendering issue with embeddium/oculus
    • So, I have a minecraft world hosted with essential on forge 1.20.1, there's 149 mods, and the forge version is 47.3.0, and it's been like that for a good 2-3 weeks, and all of a sudden, it stopped loading, and I have 0 clue as to why, and this world means A LOT to me, so if anyone out there is able to help, I would GLADLY appreciate it. here's the link if ya wanna help:   [04Dec2024 22:42:24.552] [Worker-ResourceReload-3/ERROR][net.minecraft.server.packs.resources.SimpleJsonResourceReloadListener/]: Couldn't parse data file slabsexpanded:snow_blockblocktoslab from slabsexpanded:recipes/snow_blockblocktoslab.json com.google.gson.JsonParseException: com.google.gson.stream.MalformedJsonException: Expected name at line 16 column 4 path $.result.item at net.minecraft.util.GsonHelper.m_13780_(GsonHelper.java:526) ~[client-1.20.1-20230612.114412-srg.jar%23490!/:?] at net.minecraft.util.GsonHelper.m_263475_(GsonHelper.java:531) ~[client-1.20.1-20230612.114412-srg.jar%23490!/:?] at net.minecraft.util.GsonHelper.m_13776_(GsonHelper.java:581) ~[client-1.20.1-20230612.114412-srg.jar%23490!/:?] at net.minecraft.server.packs.resources.SimpleJsonResourceReloadListener.m_278771_(SimpleJsonResourceReloadListener.java:41) ~[client-1.20.1-20230612.114412-srg.jar%23490!/:?] at net.minecraft.server.packs.resources.SimpleJsonResourceReloadListener.m_5944_(SimpleJsonResourceReloadListener.java:29) ~[client-1.20.1-20230612.114412-srg.jar%23490!/:?] at net.minecraft.server.packs.resources.SimpleJsonResourceReloadListener.m_5944_(SimpleJsonResourceReloadListener.java:17) ~[client-1.20.1-20230612.114412-srg.jar%23490!/:?] at net.minecraft.server.packs.resources.SimplePreparableReloadListener.m_10786_(SimplePreparableReloadListener.java:11) ~[client-1.20.1-20230612.114412-srg.jar%23490!/:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] Caused by: com.google.gson.stream.MalformedJsonException: Expected name at line 16 column 4 path $.result.item at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1657) ~[gson-2.10.jar%23107!/:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:514) ~[gson-2.10.jar%23107!/:?] at com.google.gson.stream.JsonReader.hasNext(JsonReader.java:422) ~[gson-2.10.jar%23107!/:?] at com.google.gson.internal.bind.TypeAdapters$28.read(TypeAdapters.java:779) ~[gson-2.10.jar%23107!/:?] at com.google.gson.internal.bind.TypeAdapters$28.read(TypeAdapters.java:725) ~[gson-2.10.jar%23107!/:?] at com.google.gson.internal.bind.TypeAdapters$34$1.read(TypeAdapters.java:1007) ~[gson-2.10.jar%23107!/:?] at net.minecraft.util.GsonHelper.m_13780_(GsonHelper.java:524) ~[client-1.20.1-20230612.114412-srg.jar%23490!/:?]
    • Hello! I have been having a problem with Forgematica, Embeddium, Oculus, and create. I wanted to download litematica so I could see which blocks are in my creative mode build, so that I could collect them all in survival. However, litematica is a fabric mod. I found a port called forgematica, which I added (along with it's dependency) to my mods folder. I loaded into a new world, and built a structure. Then, I added a part from the create mod, and the game crashed instantly, with exit code -1. Thanks for any help! Crash Report and mods list: https://pastebin.com/rtzh6LAi
  • Topics

×
×
  • Create New...

Important Information

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