Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Damian_RastMan

Members
  • Joined

  • Last visited

  1. Other (non modded) servers and single player works fine for him. But I and my other players have no problem to join the server with that amount of mods..
  2. It's couldron server with newest build.. I reported this issue there, but my thread got closed. So now I'm here. There is console output: http://pastebin.com/Tx9sty2V There is what's going on in server's console while this player is trying to join: [23:38:23 INFO]: UUID of player Cass is 54854d47-def8-34f2-b35d-cdc58a56d147 [23:38:53 INFO]: Cass lost connection: Timed out
  3. So names like Pig/Zombie/Skeleton/MoCreatures.Whatever doesn't exists? Even if they didnt return null minute ago?
  4. It's me again. I have an issue with createEntityByName method.. sometimes it returns null. Maybe it's because of specified time or world? Is there any way to force creating entity using this method?
  5. How can i cast Entity into EntityLivingBase? EntityLivingBase living = (EntityLivingBase) EntityList.createEntityByName(args[1], player.getEntityWorld()); throws nullPointerException for args[1] = zombie, skeleton etc.
  6. 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
  7. 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 here o = Class.forName(args[1]).getConstructor();
  8. I'm trying to create EntityLivingBase variable while i only have it's class path string. Could you please explain me with some code how to do this?
  9. 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..

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.