Jump to content

Connecting Item to Entity problem


Frostmourneee

Recommended Posts

Hi. 
My goal was to create minecart very similar to Furnace_Minecart, but with small property differences, e.g. changing INGREDIENT.COAL to INGREDIENT.APPLE, nevermind.
On the first try I've created new class MinecartNew extends MinecartFurnace (which extends AbstractMinecart). So I've registered this new Entity, I have registered Renderer for it and in minecraft I had two practically equal minecart_furnace versions. Then I was able to change my vehicle speed by overriding "public float getMaxCartSpeedOnRail()". At that moment in minecraft I had vanilla minecart_furnace and my vehicle with greater speed and same textures as vanilla one.
But I have no idea how to change INGREDIENT.COAL to INGREDIENT.APPLE, because this field is private in MinecartFurnace. To avoid it I changed my new class "MinecartNew extends MinecartFurnace" to "MinecartNew extends AbstractMinecart", copy paste there everything which was in MinecartFurnace and now I can change INGREDIENT without any problem. I can /summon my new entity in minecraft now and I can change its properties as I want.

The problem is "how to create item which will be connected to my entity?". I do not want to type /summon to interact with my vehicle every time of course, I want to use item to do it. 
Well, I know how to create simple Block and connect it to my custom item, there is no issues. But how to create item and then connect it to entity... So that is my question. Thanks in advance!

//P.S. I've tried to look at the vanilla minecarts code and how do they connects to items and it works with special class MinecartItem which requires AbstractMinecart.Type and item.Properties. There is no issues with Item.Properties, but there is problem with AbstractMinecart.Type. Type can be FURNACE, HOPPER, TNT, etc. I can not create new Type, because it is "public static enum Type" in AbstractMinecart. And if I use FURNACE type then of course my item will be registered to vanilla furnace_minecart, not to my new minecart :(

//P.P.S If you know that my sequencing isn't right at all, may be my MinecartNew class should not extends AbstractMinecart or something like this - I'll be glad to receive your advises how to solve my problems

Link to comment
Share on other sites

Damn, may be it's possible somehow to create item and add to it "if (right click with this item on to rails) then imitate /summon minecart_new" or smth like this? It sounds to me as possible and not dumb way to reach my goals... Could you please share your thoughts about it?) Maybe this is a good option?

Link to comment
Share on other sites

Gosh, maybe there's a MinecartItem?

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.

Link to comment
Share on other sites

1 hour ago, Draco18s said:

Gosh, maybe there's a MinecartItem?

Well, tbh I do not understand what does it mean. Yeah, there is vanilla class MinecartItem and it is used to connect vanilla items to vanilla carts) All of these I've said in P.S.

It's impossible to use MinecartItem in my situation, because it requires AbstractMinecart.Type as the first parameter. If I type e.g. AbstractMinecart.Type.FURNACE then item which was registered via MinecartItem will be connected to vanilla furnace_minecrat, not my custom cart.

If I'm not right and you know the way to reach my goals using MinecartItem, could you please share this way?)

Link to comment
Share on other sites

Why not replicate what it does?

Obviously not exactly, but I'm sure somewhere in it is the code that handles the right-click action and spawns an entity.

Edited by Draco18s

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.

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



×
×
  • Create New...

Important Information

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