Jump to content

Recommended Posts

Posted

Hi. I want to cast (or convert) object with path given as string into EntityLivingBase variable. I'm newbie with modding, so please could you help me? I have tried this:

Object o = Class.forName("net.minecraft.entity.monster.EntitySkeleton");
EntityLivingBase living = (EntityLivingBase) o;

 

but it cant be just casted..

Posted

So I'm making a improvement to Morph modification. I added command which takes entity class as an argument and use it to invoke morphPlayer method.. but i need to give EntityLivingBase as argument there..

 

That's extended version of my code i have at the moment:

	public void processCommand(ICommandSender sender, String[] args) {
	if(args[0].equalsIgnoreCase("morph")) {
		EntityPlayerMP player;
		if(args.length > 2) {
			player = PlayerSelector.matchOnePlayer(sender, args[2]);
		} else {
			player = getCommandSenderAsPlayer(sender);
		}

		Object o = null;
		EntityLivingBase living = null;

		try {
			o = Class.forName(args[1]).getConstructor();
			living = (EntityLivingBase) o;
			Class<?> EH = Class.forName("morph.common.core.EntityHelper");
			Method method = EH.getMethod("morphPlayer", EntityPlayerMP.class, EntityLivingBase.class, boolean.class);
			method.invoke(null, player, living, true);
		} catch (ClassNotFoundException e) {
			e.printStackTrace();
		} catch (IllegalAccessException e) {
			e.printStackTrace();
		} catch (IllegalArgumentException e) {
			e.printStackTrace();
		} catch (InvocationTargetException e) {
			e.printStackTrace();
		} catch (NoSuchMethodException e) {
			e.printStackTrace();
		} catch (SecurityException e) {
			e.printStackTrace();
		}

	}
}

 

So now I'm getting

java.lang.NoSuchMethodException: net.minecraft.entity.monster.EntitySkeleton.<init>()

        at java.lang.Class.getConstructor0(Unknown Source)

        at java.lang.Class.getConstructor(Unknown Source)

here

o = Class.forName(args[1]).getConstructor();

Posted

What about modded entites? It's the biggest feature of Morph that it supports most modifications entities..

So, can I use your method with entites added with mods, like this:

drzhark.mocreatures.entity.passive.MoCEntityBird

Posted

How can i cast Entity into EntityLivingBase?

EntityLivingBase living = (EntityLivingBase) EntityList.createEntityByName(args[1], player.getEntityWorld());

throws nullPointerException for args[1] = zombie, skeleton etc.

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.