How do I move armor stands in Minecraft 1.8/1.8.1 with command blocks to different locations of the world?

Is there any way that I can move these four armor stands with command blocks?

2

1 Answer

You can use the tp command to move the armor stands. e.g.:

/tp @e[type=ArmorStand] <co-ordinates of where you want to move the armor stand>

But be careful - this will move all armor stand in the world to that location. If you want to specify an armor stand you can use the r= tag. e.g.: /tp @e[type=ArmorStand,r=1] <co-ordinates> this will move all armor stands in a radius of 1 of where the command was executed. So if you were to type the command in chat you must be in a radius of 1 block of the Armor Stand to move it.

To control difficulty you can simply type the command: /difficulty <difficulty level>Difficulty levels are:

  • 0 = Peaceful
  • 1 = Easy
  • 2 = Normal
  • 3 = Hard

So if you wanted to change the difficulty to peaceful, you can use this command: /difficulty 0

Hope this helps :-)

2

You Might Also Like