Jump to content

[SOLVED][1.7.10]Get the player name that placed a block


megabitus

Recommended Posts

If it is a custom block, in the block class, override onBlockPlacedBy, it has EntityLivingBase argument, check if instance of EntityPlayer, cast it to EntityPlayer and then do getDisplayName().

 

If it is a vanilla block it is more complicated, I'm not sure how its done but I suggest looking at PlayerItemUseEvent.Tick.

Link to comment
Share on other sites

Thanks!

I've done it like this:

@Override
    public void onBlockPlacedBy(World world, int par2, int par3, int par4, EntityLivingBase entity, ItemStack itemstack) {
        if(entity instanceof EntityPlayer){
            EntityPlayer player = (EntityPlayer) entity;
            PlayerName = player.getDisplayName();
        }
    }

Woking at my first mod, Blocks & Items Revolution : https://github.com/megabitus98/Blocks-Items-Revolution

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.