Jump to content

[1.8]can't spawn a entity that extends EntityFlying?


jokekid

Recommended Posts

so im making a new flying mob, right now i just have the entity class done, so i thought i'd try it out, but for some reason i can't spawn it, not through the egg nor command, so i thought i did something wrong somewhere, but then i noticed i cant spawn a ghast either, and i get the same error for both.

 

i really need to be able to spawn this creature at will, specially since im making some custom AI tasks that i obviously need to test...

Link to comment
Share on other sites

first of all, all that "junk" is to have all mob stuff located in one class, and it helps...

 

second of all, this doesn't have anything to do with my issue, ive been messing around with the EntityEoC's extension, and if it extends entityMob it CAN be spawned, but it will fall through the floor because it's a noClip entity, and should be flying around...

Link to comment
Share on other sites

it's based on the ghast's entity code: http://pastebin.com/yiZvJzYc

 

so, i dont know how to make an entity fly without it being a FlyingEntity, cuz if it's a FlyingEntity you can't spawn it using the egg or command...

 

EDIT:

also, how the hell am i supposed to register a entity without a ID?

and while the egg thing may be unnecesary, it sure helps to have a spawn item instead of using commands

Link to comment
Share on other sites

registerModEntity

can add a spawn egg for you without using a global ID, just use the overload with the two additional

int

parameters (the egg background and foreground colours). There's no reason to use global IDs at all.

 

Why can't you spawn flying entities with commands or eggs? Do you get an error in the log when you attempt to do so? If so, post it.

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.

Link to comment
Share on other sites

"Based on" is nice. It is pretty much just copy-pasted probably without you understanding anything.

what you are looking at is the ghast class, not my own entity class, and yes, first i copy necesary methods, make sure it works, and then i edit them as i need.

Sure you can spawn flying entities using spawn eggs...

if i could, this thread wouldnt exist, you CANT spawn entities that extend the EntityFlying class, that's not a question, it's a fact.

You don't. But you don't use global IDs (hence only registerModEntity). You start at 0 and increment.

registerModEntity adds a spawn egg if you tell it to.

ok, didnt know that, will fix.

 

alright, i think i got this thing solved, i made a new class mixing both the entityMob class and entityFlying class, now it spawns and flies.

and i think i found the method that allows you to spawn a mob or not, i'll edit this post later when confirmed

 

EDIT: so i changed the registering to what you said, and now they don't work anymore...

in case i misunderstood, here's the non-functional code:

public static void createEntity(Class entityClass, String entityName, int solidColor, int spotColor){
	EntityRegistry.registerModEntity(entityClass, entityName, nextId, DungeonsMain.instance, 64, 1, true);
	EntityList.entityEggs.put(Integer.valueOf(nextId), new EntityList.EntityEggInfo(nextId, solidColor, spotColor));
	nextId++;
}

nextId is a static int that starts at 0.

and i tried giving the registerModEntity the 2 int values for the egg colors and the method doesn't exist...

Link to comment
Share on other sites

what you are looking at is the ghast class, not my own entity class, and yes, first i copy necesary methods, make sure it works, and then i edit them as i need.

Why did you post the vanilla class? Why not post your class?

 

if i could, this thread wouldnt exist, you CANT spawn entities that extend the EntityFlying class, that's not a question, it's a fact.

As I asked in my previous post, why can't you? What happens when you try?

 

and i tried giving the registerModEntity the 2 int values for the egg colors and the method doesn't exist...

Are you using an old version of Forge? The new egg system was added in 11.14.3.1468.

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.

Link to comment
Share on other sites

i'm using forge 1.8-11.14.3.1450

 

how do i update to the newer forge?

 

and if you wanna know what happens when summoning/spawning a entity that extends EntityFlying just try spawning a ghast.

 

chat says "unable to summon object"

 

and the console gives this:

[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.reflect.InvocationTargetException
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.lang.reflect.Constructor.newInstance(Unknown Source)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.entity.EntityList.createEntityByID(EntityList.java:224)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.item.ItemMonsterPlacer.spawnCreature(ItemMonsterPlacer.java:201)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.item.ItemMonsterPlacer.onItemUse(ItemMonsterPlacer.java:107)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.common.ForgeHooks.onPlaceItemIntoWorld(ForgeHooks.java:570)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.item.ItemStack.onItemUse(ItemStack.java:146)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.management.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:488)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(NetHandlerPlayServer.java:624)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:67)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:114)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:24)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.util.concurrent.FutureTask.run(Unknown Source)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:714)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:727)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.lang.Thread.run(Unknown Source)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: Caused by: java.lang.NullPointerException
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at com.jokekid.dungeons.mobs.eoc.EntityEoC.applyEntityAttributes(EntityEoC.java:36)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.entity.EntityLivingBase.<init>(EntityLivingBase.java:161)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.entity.EntityLiving.<init>(EntityLiving.java:77)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.entity.EntityFlying.<init>(EntityFlying.java:14)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at com.jokekid.dungeons.mobs.eoc.EntityEoC.<init>(EntityEoC.java:14)
[18:32:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	... 22 more
[18:32:05] [server thread/WARN]: Skipping Entity with id 4

 

and i posted the vanilla class so you guys didnt need to search for it, i already posted my entire repo before

Link to comment
Share on other sites

To update Forge, change the

minecraft.version

field (i.e. the

version

field in the

minecraft

block) in your build.gradle script to the appropriate version and run

gradlew setupDecompWorkspace

again. If you're using Eclipse, regenerate your project with

gradlew eclipse

. If you're using IDEA, refresh the project in the Gradle window.

 

Your repo doesn't have the code for the flying entity in it.

 

If you look at the stacktrace, you'll see that your code is throwing a

NullPointerException

on line 36 of

EntityEoC

(in the

applyEntityAttributes

method).

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.

Link to comment
Share on other sites

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

    • If you're seeking an unparalleled solution to recover lost or stolen cryptocurrency, let me introduce you to GearHead Engineers Solutions. Their exceptional team of cybersecurity experts doesn't just restore your funds; they restore your peace of mind. With a blend of cutting-edge technology and unparalleled expertise, GearHead Engineers swiftly navigates the intricate web of the digital underworld to reclaim what's rightfully yours. In your moment of distress, they become your steadfast allies, guiding you through the intricate process of recovery with transparency, trustworthiness, and unwavering professionalism. Their team of seasoned web developers and cyber specialists possesses the acumen to dissect the most sophisticated schemes, leaving no stone unturned in their quest for justice. They don't just stop at recovering your assets; they go the extra mile to identify and track down the perpetrators, ensuring they face the consequences of their deceitful actions. What sets  GearHead Engineers apart is not just their technical prowess, but their unwavering commitment to their clients. From the moment you reach out to them, you're met with compassion, understanding, and a resolute determination to right the wrongs inflicted upon you. It's not just about reclaiming lost funds; it's about restoring faith in the digital landscape and empowering individuals to reclaim control over their financial futures. If you find yourself ensnared in the clutches of cybercrime, don't despair. Reach out to GearHead Engineers and let them weave their magic. With their expertise by your side, you can turn the tide against adversity and emerge stronger than ever before. In the realm of cybersecurity, GearHead Engineers reigns supreme. Don't just take my word for it—experience their unparalleled excellence for yourself. Your journey to recovery starts here.
    • Ok so this specific code freezes the game on world creation. This is what gets me so confused, i get that it might not be the best thing, but is it really so generation heavy?
    • Wizard web recovery has exhibited unparalleled strength in the realm of recovery. They stand out as the premier team to collaborate with if you encounter withdrawal difficulties from the platform where you’ve invested. Recently, I engaged with them to recover over a million dollars trapped in an investment platform I’d been involved with for months. I furnished their team with every detail of the investment, including accounts, names, and wallet addresses to which I sent the funds. This decision proved to be the best I’ve made, especially after realizing the company had scammed me.   Wizard web recovery ensures exemplary service delivery and ensures the perpetrators face justice. They employ advanced techniques to ensure you regain access to your funds. Understandably, many individuals who have fallen victim to investment scams may still regret engaging in online services again due to the trauma of being scammed. However, I implore you to take action. Seek assistance from Wizard Web Recovery today and witness their remarkable capabilities. I am grateful that I resisted their enticements, and despite the time it took me to discover Wizard web recovery, they ultimately fulfilled my primary objective. Without wizard web recovery intervention, I would have remained despondent and perplexed indefinitely.
    • I've tested the same code on three different envionrments (Desktop win10, desktop Linux and Laptop Linux) and it kinda blows up all the same. Gonna try this code and see if i can tune it
  • Topics

×
×
  • Create New...

Important Information

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