Jump to content

[1.12.2] Sending /me command in radius?


kevinmd88

Recommended Posts

I'm coding a mod that adds some items to the game. When one of those items is held in a player's hand and the player right-clicks in the world with it, I need it to send a message to nearby players (in a radius of blocks).

 

What I have so far...

public class MyNewItem extends Item
{
    public MyNewItem()
    {
        super();
        super.setUnlocalizedName("mymod.mynewitem");
        super.setMaxStackSize(1);
    }

    public ActionResult<ItemStack> onItemRightClick(World worldIn, EntityPlayer playerIn, EnumHand handIn)
    {
        //worldIn.getMinecraftServer().sendMessage(new TextComponentString("/me presents their MyNewItem."));
        return new ActionResult<ItemStack>(EnumActionResult.SUCCESS, playerIn.getHeldItem(handIn));
    }
}

 

 

I'm already pretty sure that sendMessage is not the function I need to use, since it does not have any parameter for block radius. I'm also not sure if it can be passed a TextComponentString as if the string were a /command typed by the player anyway.

 

Still scouring the docs and trying to hunt down a suitable function, if one exists. If anyone can provide guidance I'd be very thankful.

Edited by kevinmd88
Link to comment
Share on other sites

AxisAlignedBB boundingbox = new AxisAlignedBB(minX, minY, minZ, maxX, maxY, maxZ);
List<Entity> entityList = worldIn.getEntitiesWithinAABB(playerIn.getClass(), boundingbox);
for(int i = 0; i < entityList.size(); i++) {
	entity.get(i).sendMessage(new TextComponentString(player.getDisplayNameString() + " displays their MyNewItem"));
}

 

Parameters for the BoudingBox are "minX, minY, minZ, maxX, maxY, maxZ". So if you want to get all players in a cube of 20x20x20 around you, you would need to do.

 

double minX = playerIn.posX - 10.0;
double minY = playerIn.posY - 10.0;
double minZ = playerIn.posZ - 10.0;
double maxX = playerIn.posX + 10.0;
double maxY = playerIn.posY + 10.0;
double maxZ = playerIn.posZ + 10.0;

 

 

The one below is probably more logical.

 

 

 

Edited by Dragonisser
  • Thanks 1
Link to comment
Share on other sites

@diesieben07 I'm hoping to have it show not as a message sent by the player, for example,

 

<PlayerName> A message I've sent

 

but rather as an action they've performed like /me does, for example,

 

* PlayerName does something

 

I wasn't sure if the two were separate things. I'm going to try it as a message sent. @Dragonisser's snippet seems like what I'm looking for to that effect so I'll give it a try and post back.

Edited by kevinmd88
Link to comment
Share on other sites

Wanted to follow-up to say the code snippets @Dragonisser posted were effective in my solution. [EDIT] I did make some specific alterations which I have mentioned in my post below [/EDIT]

 

(It frustrates me when I search for an answer to something and find threads about the information I seek without any followup so I try to update my threads in case anyone else seeks an answer to similar questions. :) Thank you both, again.)

Edited by kevinmd88
Link to comment
Share on other sites

4 minutes ago, diesieben07 said:

Note that the method posted by @Dragonisser unnecessary loops through all entities, not just players. It also sends the message to all of them. For vanilla entities this does nothing, but mods might implement it differently.

No it shouldnt. It should only list all EntityPlayer(MP)

 


List<T> net.minecraft.world.World.getEntitiesWithinAABB(Class<? extends T> classEntity, AxisAlignedBB bb)


Gets all entities of the specified class type which intersect with the AABB.
Type Parameters:<T> Parameters:classEntity bb 

 

Edited by Dragonisser
Link to comment
Share on other sites

1 hour ago, diesieben07 said:

Except that's not the method you called above. In fact now that I checked, the method you called does not exist.

 

Its the exact same method and it does exist, i even tested it myself.

 

worldIn.getEntitiesWithinAABB(playerIn.getClass(), boundingbox);
World.getEntitiesWithinAABB(Class<? extends T> classEntity, AxisAlignedBB bb)

 

Looks totally different.. not.

 

/**
     * Gets all entities of the specified class type which intersect with the AABB.
     */
    public <T extends Entity> List<T> getEntitiesWithinAABB(Class <? extends T > classEntity, AxisAlignedBB bb)
    {
        return this.<T>getEntitiesWithinAABB(classEntity, bb, EntitySelectors.NOT_SPECTATING);
    }

    public <T extends Entity> List<T> getEntitiesWithinAABB(Class <? extends T > clazz, AxisAlignedBB aabb, @Nullable Predicate <? super T > filter)
    {
        int i = MathHelper.floor((aabb.minX - MAX_ENTITY_RADIUS) / 16.0D);
        int j = MathHelper.ceil((aabb.maxX + MAX_ENTITY_RADIUS) / 16.0D);
        int k = MathHelper.floor((aabb.minZ - MAX_ENTITY_RADIUS) / 16.0D);
        int l = MathHelper.ceil((aabb.maxZ + MAX_ENTITY_RADIUS) / 16.0D);
        List<T> list = Lists.<T>newArrayList();

        for (int i1 = i; i1 < j; ++i1)
        {
            for (int j1 = k; j1 < l; ++j1)
            {
                if (this.isChunkLoaded(i1, j1, true))
                {
                    this.getChunkFromChunkCoords(i1, j1).getEntitiesOfTypeWithinAABB(clazz, aabb, list, filter);
                }
            }
        }

        return list;
    }

 

kXpgfTM.png

 

I might not be a master in java and modding minecraft, but im not retarded.

Edited by Dragonisser
Link to comment
Share on other sites

I did make some adaptations - I apologize for creating this confusion. :(

 

public static void sendMessageInRadius(World worldIn, EntityPlayer playerIn, String msg, double radius)
{
    if (!worldIn.isRemote)
    {
        double minX = playerIn.posX - radius;
        double minY = playerIn.posY - radius;
        double minZ = playerIn.posZ - radius;
        double maxX = playerIn.posX + radius;
        double maxY = playerIn.posY + radius;
        double maxZ = playerIn.posZ + radius;

        AxisAlignedBB boundingbox = new AxisAlignedBB(minX, minY, minZ, maxX, maxY, maxZ);
        List<EntityPlayer> entityList = worldIn.getEntitiesWithinAABB(playerIn.getClass(), boundingbox);
        for (EntityPlayer entity : entityList)
        {
            entity.sendMessage(new TextComponentString(msg));
        }
    }
}

 

Link to comment
Share on other sites

Oh, I see.

 

List<EntityPlayer> entityList = worldIn.getEntitiesWithinAABB(EntityPlayer.class, boundingbox);

 

No need to get the class from an object, when it's available as a static field that doesn't require instantiation. I suppose in this particular case it still technically works since playerIn is available, though it's like taking one step backward to take two forward.

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

    • OLXTOTO - Bandar Togel Online Dan Slot Terbesar Di Indonesia OLXTOTO telah lama dikenal sebagai salah satu bandar online terkemuka di Indonesia, terutama dalam pasar togel dan slot. Dengan reputasi yang solid dan pengalaman bertahun-tahun, OLXTOTO menawarkan platform yang aman dan andal bagi para penggemar perjudian daring. DAFTAR OLXTOTO DISINI DAFTAR OLXTOTO DISINI DAFTAR OLXTOTO DISINI Beragam Permainan Togel Sebagai bandar online terbesar di Indonesia, OLXTOTO menawarkan berbagai macam permainan togel. Mulai dari togel Singapura, togel Hongkong, hingga togel Sidney, pemain memiliki banyak pilihan untuk mencoba keberuntungan mereka. Dengan sistem yang transparan dan hasil yang adil, OLXTOTO memastikan bahwa setiap taruhan diproses dengan cepat dan tanpa keadaan. Slot Online Berkualitas Selain togel, OLXTOTO juga menawarkan berbagai permainan slot online yang menarik. Dari slot klasik hingga slot video modern, pemain dapat menemukan berbagai opsi permainan yang sesuai dengan preferensi mereka. Dengan grafis yang memukau dan fitur bonus yang menggiurkan, pengalaman bermain slot di OLXTOTO tidak akan pernah membosankan. Keamanan dan Kepuasan Pelanggan Terjamin Keamanan dan kepuasan pelanggan merupakan prioritas utama di OLXTOTO. Mereka menggunakan teknologi enkripsi terbaru untuk melindungi data pribadi dan keuangan para pemain. Tim dukungan pelanggan yang ramah dan responsif siap membantu pemain dengan setiap pertanyaan atau masalah yang mereka hadapi. Promosi dan Bonus Menarik OLXTOTO sering menawarkan promosi dan bonus menarik kepada para pemainnya. Mulai dari bonus selamat datang hingga bonus deposit, pemain memiliki kesempatan untuk meningkatkan kemenangan mereka dengan memanfaatkan berbagai penawaran yang tersedia. Penutup Dengan reputasi yang solid, beragam permainan berkualitas, dan komitmen terhadap keamanan dan kepuasan pelanggan, OLXTOTO tetap menjadi salah satu pilihan utama bagi para pecinta judi online di Indonesia. Jika Anda mencari pengalaman berjudi yang menyenangkan dan terpercaya, OLXTOTO layak dipertimbangkan.
    • I have been having a problem with minecraft forge. Any version. Everytime I try to launch it it always comes back with error code 1. I have tried launching from curseforge, from the minecraft launcher. I have also tried resetting my computer to see if that would help. It works on my other computer but that one is too old to run it properly. I have tried with and without mods aswell. Fabric works, optifine works, and MultiMC works aswell but i want to use forge. If you can help with this issue please DM on discord my # is Haole_Dawg#6676
    • Add the latest.log (logs-folder) with sites like https://paste.ee/ and paste the link to it here  
    • I have no idea how a UI mod crashed a whole world but HUGE props to you man, just saved me +2 months of progress!  
    • So i know for a fact this has been asked before but Render stuff troubles me a little and i didnt find any answer for recent version. I have a custom nausea effect. Currently i add both my nausea effect and the vanilla one for the effect. But the problem is that when I open the inventory, both are listed, while I'd only want mine to show up (both in the inv and on the GUI)   I've arrived to the GameRender (on joined/net/minecraft/client) and also found shaders on client-extra/assets/minecraft/shaders/post and client-extra/assets/minecraft/shaders/program but I'm lost. I understand that its like a regular screen, where I'd render stuff "over" the game depending on data on the server, but If someone could point to the right client and server classes that i can read to see how i can manage this or any tip would be apreciated
  • Topics

×
×
  • Create New...

Important Information

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