Posted February 25, 20178 yr So i am trying to make living entity to have a container and a way to access that with a gui, i been able to attach a gui before but not a container. I learned how to add a tile entity to a black and container and a gui doing so, but now i am trying to apply what i learned to a living entity or a living entity base. I notice in base code it already has the NBT stuff that one would usually apply to a block entity so i think i should use that. but i am not sure what i am doing. as as far as I learned i still need a tile entity to use with a container. can any one offer some advice or some help with this matter
February 25, 20178 yr Try looking at the class EntityHorse to see how it opens the GUI of the horse. EDIT: found something at line 750 Edited February 25, 20178 yr by Leomelonseeds Apparently I'm addicted to these forums and can't help but read all the posts. So if I somehow help you, please click the "Like This" button, it helps.
February 25, 20178 yr Author Seems like horse class is a class that extending other classes that extend others. is that sometimes what is required for using methods from multiple of classes>
February 25, 20178 yr Author Say if i wanted my own entity class that extends Entityliving class could i use it as an entity living class and can i use its methods by overriding?
February 25, 20178 yr Well look at the horse code. It implements IInventoryChangedListener, so you will probably want to implement that too. Apparently I'm addicted to these forums and can't help but read all the posts. So if I somehow help you, please click the "Like This" button, it helps.
February 25, 20178 yr Author Wow, now i dont know where to start... reading the abstract horse class i learned that it has a container class that it calls to it but no entity class, or is it a entity class all on its own
February 25, 20178 yr Author 1 hour ago, Leomelonseeds said: Try looking at the class EntityHorse to see how it opens the GUI of the horse. EDIT: found something at line 750 My entity horse only goes to 300 something what do u mean
February 25, 20178 yr Author Also not concearned about opening the gui, i am concerned about the data saving of the entityliving slots and the container is required for all of this to work i am also guessing u meant 250 Edited February 25, 20178 yr by clowcadia
February 25, 20178 yr What you need to do is the same thing you would for a TileEntity. Create a IItemHandlerModifiable field in your Entity and override hasCapability and getCapability in your Entities class. Read the docs specifically the Using an Existing Capability section. 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.
February 25, 20178 yr Author But how do i attach the tileentity to the class that is extended to entity livng
February 26, 20178 yr Not a block. Treat your Entity like you would a TileEntity for this. 1 hour ago, Animefan8888 said: What you need to do is the same thing you would for a TileEntity. 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.