jrockjake Posted January 17, 2015 Share Posted January 17, 2015 Topic says it all, I'm thinking of making sort of a Recycling Rod of sorts. I want the Rod to turn dropped pieces of armor into ingots or nuggets. I know the basics and everything but that's pretty much as far as tutorials go. Any help would be appreciated. Quote Link to comment Share on other sites More sharing options...
Draco18s Posted January 17, 2015 Share Posted January 17, 2015 EntityItem objects are Entities and can be found when dropped by using world#entitiesInAABB(...) There are at least three different versions, you're going to want the one that takes a Class as a parameter and looks for Entities that subclass the passed type. Quote 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 More sharing options...
Darkona Posted January 17, 2015 Share Posted January 17, 2015 This might help you, here's an example. Then you can simply iterate and do something to the entities. double posX = player.posX; double posY = player.posY; double posZ = player.posZ; List<EntityItem> groundItems = world.getEntitiesWithinAABB( EntityItem.class, AxisAlignedBB.getBoundingBox(posX, posY, posZ, posX + 1.0D, posY + 1.0D, posZ + 1.0D).expand(4.0D, 4.0D, 4.0D)); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.