Posted June 29, 20178 yr I would like to get all the entities in a radius around a block so that I can apply a potion effect to all of them. how would I go about doing this?
June 29, 20178 yr You can use World#getEntitiesWithinAABB to get all the entities in an AxisAlignedBB. Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/
June 29, 20178 yr Author as far as I can tell that doesn't work anymore, at least the way I do it. can you please give an example?
June 29, 20178 yr World#getEntitiesWithinAABB(Entity.class, new AxisAlignedBB(x,y,z,x+10,y+10,z+10) will return every entity inside a 10x10x10 box and which inherents the Entity class. Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/
June 29, 20178 yr Author Thank you very much!. I was trying to follow the old guides that had AxisAllignedBB.getBoundingBox which doesnt work. edit: the potion effect function is only applicable to players? Edited June 29, 20178 yr by Acrogenous
June 29, 20178 yr The method to apply potion effects is defined in EntityLivingBase, so if you call World#getEntitiesWithinAABB with EntityLivingBase.class, you can apply the potion effects to them. Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/
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.