Jump to content

Recommended Posts

Posted

Is there a way to add a subtext for vanilla itemstacks, depending on some data written in the nbt stack?

So lets say you could infuse a blaze rod with some stuff (written in the nbt) and then you would have the tooltip "This item has 4 infusions left"?

 

Posted

Subscribe to

ItemTooltipEvent

and add lines to the list.

 

If NEI is running, this event won't be fired; so you need to implement

IContainerTooltipHandler

and register it using

GuiContainerManager.addTooltipHandler

.

 

I don't think JEI messes with this event, so you don't need to work around it like you do with NEI.

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

I added the dev version of CodeChickenCore and NotEnoughItems and its throwing a ClassNotFoundException at me.. Any ideas..?

 

 

Exception in thread "main" [15:07:49] [main/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: java.lang.reflect.InvocationTargetException

[15:07:49] [main/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[15:07:49] [main/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[15:07:49] [main/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[15:07:49] [main/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[15:07:49] [main/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97)

[15:07:49] [main/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at GradleStart.main(GradleStart.java:26)

[15:07:49] [main/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: Caused by: java.lang.NoClassDefFoundError: codechicken/lib/asm/CC_ClassWriter

[15:07:49] [main/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at codechicken.core.asm.MCPDeobfuscationTransformer$LoadPlugin.injectData(MCPDeobfuscationTransformer.java:52)

[15:07:49] [main/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper.injectIntoClassLoader(CoreModManager.java:143)

[15:07:49] [main/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:115)

[15:07:49] [main/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[15:07:49] [main/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: ... 6 more

[15:07:49] [main/INFO] [sTDERR]: [java.lang.Throwable:printStackTrace:-1]: Caused by: java.lang.ClassNotFoundException: codechicken.lib.asm.CC_ClassWriter

[15:07:49] [main/INFO] [sTDERR]: [java.lang.Throwable:printStackTrace:-1]: at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191)

[15:07:49] [main/INFO] [sTDERR]: [java.lang.Throwable:printStackTrace:-1]: at java.lang.ClassLoader.loadClass(Unknown Source)

[15:07:49] [main/INFO] [sTDERR]: [java.lang.Throwable:printStackTrace:-1]: at java.lang.ClassLoader.loadClass(Unknown Source)

[15:07:49] [main/INFO] [sTDERR]: [java.lang.Throwable:printStackTrace:-1]: ... 10 more

[15:07:49] [main/INFO] [sTDERR]: [java.lang.Throwable:printStackTrace:-1]: Caused by: java.lang.NullPointerException

[15:07:49] [main/INFO] [sTDERR]: [java.lang.Throwable:printStackTrace:-1]: at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182)

[15:07:49] [main/INFO] [sTDERR]: [java.lang.Throwable:printStackTrace:-1]: ... 12 more

 

 

Posted

It looks like CodeChickenLib is missing. CodeChickenCore usually downloads it automatically, but you may need to add it as a dependency manually in the development environment.

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

No, it's only for 1.8 and earlier. Just Enough Items (JEI) is the 1.8.9 replacement for its item list and recipe viewing functionality.

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

I guess I will be using JEI  then, since it supports 1.8.9.

Another problem I stumpled upon was adding the information to the itemstacks nbt.

I am triing to add 10 charges to each blaze rod that get depleted when doing stuff.

The problem is that the TagCompound is null the next tick, even if I set it in my code (This is running inside a ServerTickHandler)

 

ArrayList<EntityPlayer> player = Helper.getAllPlayer();
	for (EntityPlayer entityPlayer : player) {

		for (ItemStack itemStack : entityPlayer.openContainer.inventoryItemStacks) {
			if(itemStack==null) continue;
			if(itemStack.getItem() ==Items.blaze_rod) {
				NBTTagCompound compound = itemStack.getTagCompound();
				if(compound==null) {
					compound = new NBTTagCompound();
					itemStack.setTagCompound(compound);

				}
				if(!compound.hasKey("charges")) {
					System.out.println("setting compound");
					compound.setLong("charges", 10);
				}
			}
		}
	}

Posted

Reading the docs helps a lot..

 

 

/**

    * Assigns a NBTTagCompound to the ItemStack, minecraft validates that only non-stackable items can have it.

    */

 

 

How can I work around that?

Posted

Container#inventoryItemStacks

is just a cache that stores a copy of the container's contents. To modify the inventory itself you need to iterate through the container's slots (

Container#inventorySlots

), copy the stack in each slot (

Slot#getStack

,

ItemStack#copy

), modify the copy and then replace the slot's stack with the copy (

Slot#putStack

).

 

Don't directly modify the stack returned from

Slot#getStack

as the slot may be backed by an

IItemHandler

, which specifically forbids modifying the stack returned from

IItemHandler#getStackInSlot

.

 

I don't think that documentation is accurate, since the vanilla Skull item uses NBT to store the skull owner (for player skulls) and can be stacked.

 

If you're modifying the NBT of items not added by your mod, make sure you include your mod ID in the tag names so you don't overwrite other people's data.

 

Storing the infusion count could be a potential use-case for the new capability system.

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.

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

    • When I first heard about Bitcoin back in 2018, I was skeptical. The idea of a decentralized, digital currency seemed too good to be true. But I was intrigued as I learned more about the technology behind it and its potential. I started small, investing just a few hundred dollars, dipping my toes into the cryptocurrency waters. At first, it was exhilarating to watch the value of my investment grow exponentially. I felt like I was part of the future, an early adopter of this revolutionary new asset. But that euphoria was short-lived. One day, I logged into my digital wallet only to find it empty - my Bitcoin had vanished without a trace. It turned out that the online exchange I had trusted had been hacked, and my funds were stolen. I was devastated, both financially and emotionally. All the potential I had seen in Bitcoin was tainted by the harsh reality that with decentralization came a lack of regulation and oversight. My hard-earned money was gone, lost to the ether of the digital world. This experience taught me a painful lesson about the price of trust in the uncharted territory of cryptocurrency. While the technology holds incredible promise, the risks can be catastrophic if you don't approach it with extreme caution. My Bitcoin investment gamble had failed, and I was left to pick up the pieces, wiser but poorer for having placed my faith in the wrong hands. My sincere appreciation goes to MUYERN TRUST HACKER. You are my hero in recovering my lost funds. Send a direct m a i l ( muyerntrusted ( @ ) mail-me ( . )c o m ) or message on whats app : + 1 ( 4-4-0 ) ( 3 -3 -5 ) ( 0-2-0-5 )
    • You could try posting a log (if there is no log at all, it may be the launcher you are using, the FAQ may have info on how to enable the log) as described in the FAQ, however this will probably need to be reported to/remedied by the mod author.
    • So me and a couple of friends are playing with a shitpost mod pack and one of the mods in the pack is corail tombstone and for some reason there is a problem with it, where on death to fire the player will get kicked out of the server and the tombstone will not spawn basically deleting an entire inventory, it doesn't matter what type of fire it is, whether it's from vanilla fire/lava, or from modded fire like ice&fire/lycanites and it's common enough to where everyone on the server has experienced at least once or twice and it doesn't give any crash log. a solution to this would be much appreciated thank you!
    • It is 1.12.2 - I have no idea if there is a 1.12 pack
  • Topics

×
×
  • Create New...

Important Information

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