Tell me more ×
Arqade is a question and answer site for passionate videogamers on all platforms. It's 100% free, no registration required.

My friends and I have set up a war server where we basically just kill each other, but we have really elaborate bases and stuff to hide from each other. However, the hidden-ness of us, can get ruined due to the name tags appearing above players' heads whether or not those players can be seen. E.G. I got into my friend's base without him knowing, but he was able to tell because he could see my name tag moving across his screen when he looked into his base. That usually kills the fun.
Should I write to Notch and ask him to add something to change that, or is there any way to fix it, myself?

share|improve this question

2 Answers

up vote 7 down vote accepted

There's a built-in way to do this (that has built-in drawbacks) and a modding way.

To hide your name from other players, just sneak (crouch) the whole time you are trying to avoid detection. Your name won't show through blocks then.

The modding way is a Bukkit plugin called HeroSneak that will add a server command /sneak (along with persmissions hooks for who can use it, etc., so as usual you will need other mods if you want to restrict it). HeroSneak exploits the built-in way of hiding your name: it just activates the name-hiding feature with a command instead of tying it to whether or not you are in sneak mode.

share|improve this answer
I downloaded Bukkit server and HeroSneak and it does exactly what I want. Thanks! – Carter Pape Aug 8 '11 at 0:26

Found this

Minecraft client receives packets that are specally formatted the two that matter are NamedEntitySpawn and EntityDestroy. Named entity spawn let's you spawn an instance of any player(even notch) the player can't do anything unless programmed to do so. You can also take a real person, destroy their entity to all existing players, alter the name, then spawn the entity back. This can cause a huge number of issues, minecraft usernames are assumed unique non empty strings. What your suggesting may break other plugins.

So i think the username act as an id so it can't be remove or hide or it may break the game interaction with spawning :S

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.