Jump to content

Recommended Posts

Posted

Hey all, so I have some basic knowledge regarding java, like object creation, methods, variables, and properties. I learned from Khan Academy, if that knowledge is of any use.

 

Anyway, I am following Crayfish's tutorial for adding items to Minecraft, and for some reason, I can set the unlocalized name, but not the registry name for the item, because it says I haven't defined the method for setRegistryName. My code is below. The ItemMango class contains a couple methods, which set the unlocalized name, and the registry name. My Reference class clearly defines the method for the registry name, but I still get an error. I would greatly appreciate any help.

 

Thanks

 

package com.Atirath.Main.items;

import com.Atirath.Main.Reference;

import net.minecraft.item.Item;

public class ItemMango extends Item {

public ItemMango() {
	setRegistryName(Reference.MainItems.MANGO.getRegistryName());
	setUnlocalizedName(Reference.MainItems.MANGO.getUnlocalizedname());
}		
}	




package com.Atirath.Main;

import com.Atirath.Main.init.ModItems;
import com.Atirath.Main.proxy.CommonProxy;

import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.Mod.Instance;
import net.minecraftforge.fml.common.SidedProxy;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;

public class Main {

@Instance
public static Main instance;

@SidedProxy(clientSide = Reference.CLIENT_PROXY_CLASS, serverSide = Reference.SERVER_PROXY_CLASS)
public static CommonProxy proxy;

@EventHandler
public void preInit(FMLPreInitializationEvent event){
	System.out.println("Pre Init");
	ModItems.init();
	ModItems.register();
}

@EventHandler
public void init(FMLInitializationEvent event){
	System.out.println("Init");
	proxy.init();
}
@EventHandler
public void postInit(FMLPostInitializationEvent event){
	System.out.println("Post Init");
}
}

Posted

Which version of Minecraft are you using? Always specify this in the thread title.

 

You should also wrap your code in [nobbc]

 

[/nobbc] tags so it's formatted properly.

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

Sorry, I'm a bit new here. My version is 1.9.4

 

I'll make sure to wrap my code with those tags next time. How would you go about using those code tags? Could you give a quick example using one line of code?

EDIT:I modified the post with the version and formatting

Posted

Show the

Reference.MainItems

class.

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.

Posted

Here it is. The video does not show him creating something like public class MainItems, but he does create an enum.

 

public static enum MainItems {
	MANGO("mango", "ItemMango");

	private String unlocalizedName;
	private String registryName;

	MainItems(String unlocalizedName, String registryName) 
	{
		this.unlocalizedName = unlocalizedName;
		this.registryName = registryName;
	}
		public String getUnlocalizedname(){
			return unlocalizedName;
		}

		public String getRegistryName(){
		return registryName;
		}
}

Posted

I'm still confused. That does not work. The line of code I assume I am supposed to look at in your file is

 

GameRegistry.register(SPHERE.setRegistryName ("sphere"));

 

and my line of code is similar:

 

GameRegistry.register(mango.setRegistryName("mango"));

 

I am still not sure what I am doing wrong.

Posted

I'm still confused. That does not work. The line of code I assume I am supposed to look at in your file is

 

GameRegistry.register(SPHERE.setRegistryName ("sphere"));

 

and my line of code is similar:

 

GameRegistry.register(mango.setRegistryName("mango"));

 

I am still not sure what I am doing wrong.

 

Define "does not work."

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.

Posted

Define "does not work."

 

Is that directed at other users on this thread, or me? If it is directed towards me, what do you mean?

Yes it is direcred at you, he means what doesnt work?

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Posted

Sorry, I thought you were referring to defining a method. I am still getting a bug when I use the line of code within the example mod gurujive sent me. Specifically, I get the error message "The method setRegistryName(String) is undefined for the type ItemMango" when I attempt to use

 

setRegistryName(MainItems.MANGO.getRegistryName());

 

I apologize for the confusion.

Posted

I attempted to update it using the guide here:

 

http://www.minecraftforge.net/forum/index.php?topic=14048.0#post_troubleshoot

 

I followed the instructions, and I was under the assumption that forge got updated. However, I do not know how to tell if it has been updated for sure.

Try creating a new workspace and copying your code over to there. Though I am not sure what part of the updating went wrong.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

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



×
×
  • Create New...

Important Information

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