Can players in a Minecraft Realm play at different difficulty levels?
I purchased a Minecraft Realm and play regularly with my two sons. One of them is really freaked out by hostile mobs and the other really wants to fight them and collect what they drop. Can I set the frightened child to Peaceful and the other child to Easy? If so, what is the command? I have only had luck changing the difficulty level for everybody. Thank you!
Best Answer
While the overall difficulty of the game is set on a per-world basis, you could just go and automatically remove all hostile mobs from the vicinity of your younger son's character using command blocks.
To do so, set yourself to creative mode and give yourself a command block (/give @p minecraft:command_block). You'll also need a scoreboard objective (you could do it without one, but it's cleaner with one):
scoreboard objectives add hostileMob dummy
Set up a 20Hz./fill clock close to the world's spawnpoint (so that they are always loaded), preferably in a bedrock cage as to be inaccessible in survival mode.
Place the following commands:
/scoreboard players set @e[type=Creeper] hostileMob 1
/scoreboard players set @e[type=Zombie] hostileMob 1
/scoreboard players set @e[type=Skeleton] hostileMob 1
...
/execute @p[name=<NAME>] ~ ~ ~ @e[score_hostileMob_min=1,r=<R>] ~ -10 ~
The ... represents additional scoreboard commands. You'll need one for every type of hostile mob from this list. Replace <NAME> by your younger son's Minecraft name. This will teleport the mobs into the void if they are within <R> blocks (I suggest something like 20) of that character.
Note that your son will still have to deal with the hunger bar depleting (unlike true peaceful mode).
Pictures about "Can players in a Minecraft Realm play at different difficulty levels?"



Can realm members change difficulty?
Operator realm members can't change difficulty setting.Are Minecraft Realms on hard mode?
Hardcore mode is not available in Minecraft Realms. Spawn protection disallows standard players from placing or destroying blocks in a specified radius from the world's spawn area. When enabled, this option forces all players into the server's selected default game mode when they log into the server.Can different versions of Minecraft play together on realms?
Can I play on a Realm with other players on different devices? Yes. Most versions of Minecraft now allow players to get together, regardless of which device they're on.How do I lock the difficulty on my Minecraft server?
By default the game difficulty is not locked, but you can find the setting to do so by pressing the \u201cESC\u201d key to pull up the settings menu and then navigating to the \u201cOptions\u201d submenu. The difficulty lock (seen in blue above) is located right next to the difficulty selection button.Minecraft How To Change Difficulty Without Cheats Or Host Privileges
More answers regarding can players in a Minecraft Realm play at different difficulty levels?
Answer 2
I'm not aware of a command that can change the difficulty for individual players, but going on creative for your youngest son is a good idea. If they are very frightened, try playing mini-games as well as survival, it can be fun for children! :)
Sources: Stack Exchange - This article follows the attribution requirements of Stack Exchange and is licensed under CC BY-SA 3.0.
Images: Mike, Joe Calomeni, Alexander Nadrilyanski, Pixabay
