
bl4ckscor3
Members-
Content Count
86 -
Joined
-
Last visited
Community Reputation
5 NeutralAbout bl4ckscor3
-
Rank
Stone Miner
Converted
-
Gender
Male
-
Location
Germany
-
Personal Text
""
-
bl4ckscor3 started following config file, [1.7.10] Incorrect GUI texture being rendered., [1.7.2]Getting the name of the player who sent a message to the chat? and 7 others
-
Hi, I have a GUI which opens upon rightclicking a custom item. Basically you can add and remove players to/from the item, and in order to save the players I'm using the ItemStack's NBTTagCompound via player.getCurrentEquippedItem().getTagCompound(). Whenever the NBT data gets changed and the GUI is closed and quickly reopened, I get a serverside crash: This is the method from the item's class where the GUI is opened from: public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer) { if(!par2World.isRemote) {
-
Hello! I'm using the ClientChatReceivedEvent to check for specific words in the message, then giving a sound to the player. But I don't want the sound to play, if the current Player writes that specific word. So I need to get the name of the player who sent the message. I already tried the ClientChatReceivedEvent.message.func_150260_c(); method (which returns the message just as you see it in the chat) and then extracting the players name, but that does not work on servers with custom chat formats, since I search for "<" and ">". Is there any way to get the name without searching for spe
-
Could you post the Handler as well please?
-
Like I already told you in the Minecraft forums, it may have something todo with the file itself. That was the solution for me. And if your preInit is missing @EventManager and it still doesn't work, try the thing with GoldWaves again. And it is missing the FMLPreInitializationEvent event in the brackets.
-
Thanks But what is the rarity of some vanilla Item, let's say a music disc? I need a number to navigate with.
-
Hi guys! What I'd like to do is adding a custom item to a dungeon/mineshaft/stronghold chest. How would I do this?
-
Please give us the code.
-
Crafting recipe error when using custom items
bl4ckscor3 replied to sinsiliuxs120's topic in Modder Support
The source code is very helpful on this. -
What do you mean by "you can read from them but not write"?
-
How to spawn a mob similar to the Iron Golem?
bl4ckscor3 replied to bl4ckscor3's topic in Modder Support
But that is for a custom Block - I'd like it for the vanilla pumpkin. And without editing the base class... -
How to spawn a mob similar to the Iron Golem?
bl4ckscor3 replied to bl4ckscor3's topic in Modder Support
Exactly. -
How to spawn a mob similar to the Iron Golem?
bl4ckscor3 replied to bl4ckscor3's topic in Modder Support
Thank you so far. But how can I add my Golems to the "Awake-List" without editing BlockPumpkin.java? -
Hello guys! I'd like to make a new mob and I want it so that you have to put some blocks down in a specific shape and the mob spawns when placing the Pumpkin (Yes, my mob has a pumpkin as a head ). I already looked at several source codes and I searched the vanilla one for solutions but I couldn't find anything. Can you please help me out?
-
The sounds are loaded... I'm going to PM you my source code, maybe something is wrong in the depths of it.