Minecraft – How to spawn a skeleton without a bow and a name

minecraft-java-edition

I was making the Judgement Hall from Undertale (IN MINECRAFT). I already made the music and the map, but what's the command for a skeleton without a bow that has a name?

Best Answer

It's not that hard.

/summon Skeleton ~ ~1 ~

This summons a skeleton on the command block.

/summon Skeleton ~ ~1 ~ {CustomName:"Bob"}

This summons a named skeleton. Optionally, you can use the "CustomNameVisible:" tag, to make the name visible even when you don't hover over the skeleton.

/summon Skeleton ~ ~1 ~ {CustomName:"Bob",CustomNameVisible:1,HandItems:[{id:"air"},{id:air}]}

This last command replaces items in both hands with air (nothing) or in other words, clears them.