A Minecraft Enderman mod has been created which basically lets you steal their powers wholesale. While it’s not exactly perfect, it’s pretty darn close to letting you enjoy all of the upsides of an Enderman in Minecraft — and all of the downsides, too.
The mod was created by /u/Henry_Cat735 and submitted to the /r/Minecraft subreddit. Best of all, it’s not a mod that requires any kind of external code or files — you can make the magic happen simply through the use of command blocks.
How to use the Minecraft Enderman mod
Activating this Minecraft Enderman mod requires the use of Command Blocks, so the first thing you’ll need to know is that it’s not going to work in Survival. You’re going to need to be playing in Creative Mode, Survival Mode with cheats, or have admin access on a server.
ALSO: Why an online E3 2020 is the right move for the digital age
You’re also going to need to know how to work with command blocks. If you’ve never done that before, it’s going to require typine in some commands in chat! Here are the steps you need to undertake for the whole process as noted in this Pastebin file posted by /u/Henry_Cat735 on Reddit.
- Spawn a command block using this command:
- /give @s minecraft:command_block
- Enter the following command into the command block you just spawned:
- /give @p minecraft:player_head{AttributeModifiers:[{Slot:”head”, AttributeName:”generic.maxHealth”, Name:”generic.maxHealthg”, Amount:20, Operation:0, UUIDLeast:1, UUIDMost:1}],SkullOwner:”MHF_enderman”,tag:”enderman”,display:{Name:'{“text”:”Enderman Head”,”color”:”dark_purple”}’}}
- Place a Redstone torch on the command block to activate it.
- This will give you a special Endermen head.
Now that you have the head, your health will be buffed slightly. However, activating these powers requires the addition of several other commands.
The following commands need to run on a loop, so you’ll have to put one command in one command block each and ensure that each of them are hooked up to a repeating Redstone clock. You can also pick and choose your powers!
Minecraft Enderman mod | Give teleport stick
- /execute as @a unless entity @s[nbt={Inventory:[{Slot:103b,tag:{tag:”enderman”}}]}] run tag @s remove givenStick
- /execute as @a unless entity @s[nbt={Inventory:[{Slot:103b,tag:{tag:”enderman”}}]}] run clear @s minecraft:carrot_on_a_stick{display:{Name:'{“text”:”Teleport”,”color”:”dark_purple”}’}}
- /execute as @a[nbt={Inventory:[{Slot:103b,tag:{tag:”enderman”}}]}] unless entity @s[tag=givenStick] run give @s minecraft:carrot_on_a_stick{display:{Name:'{“text”:”Teleport”,”color”:”dark_purple”}’}}
- /tag @a[nbt={Inventory:[{Slot:103b,tag:{tag:”enderman”}}]}] add givenStick
Minecraft Enderman mod | Activate teleport stick
-
/execute at @a[scores={teleport=1},nbt={SelectedItem:{id:”minecraft:carrot_on_a_stick”,tag:{display:{Name:'{“text”:”Teleport”,”color”:”dark_purple”}’}}}}] run tp @p ^ ^ ^16
-
/execute at @a[scores={teleport=1},nbt={SelectedItem:{id:”minecraft:carrot_on_a_stick”,tag:{display:{Name:'{“text”:”Teleport”,”color”:”dark_purple”}’}}}}] run spreadplayers ~ ~ 0 1 false @p
-
/execute at @a[nbt={Inventory:[{Slot:103b,tag:{tag:”enderman”}}]},scores={teleport=1}] run playsound minecraft:entity.enderman.teleport master @p ~ ~ ~ 1 1
-
/scoreboard players set @a teleport 0
Minecraft Enderman mod | Automatically dodge arrows
- /execute at @a[nbt={Inventory:[{Slot:103b,tag:{tag:”enderman”}}]}] positioned ~-0.8 ~-1 ~-0.8 if entity @e[type=arrow,dx=1.6,dy=2.5,dz=1.6,nbt={inGround:0b}] run spreadplayers ~ ~ 0 16 false @p
Minecraft Enderman mod | Take damage from water
-
/execute at @a[nbt={Inventory:[{Slot:103b,tag:{tag:”enderman”}}]}] if block ~ ~ ~ water run effect give @p minecraft:instant_damage
-
/execute at @a[nbt={Inventory:[{Slot:103b,tag:{tag:”enderman”}}]}] if block ~ ~ ~ water run playsound minecraft:entity.enderman.teleport master @p ~ ~ ~ 1 1
-
/execute at @a[nbt={Inventory:[{Slot:103b,tag:{tag:”enderman”}}]}] if block ~ ~ ~ water run spreadplayers ~ ~ 0 16 false @p
Unfortunately, the mod creator hasn’t yet figured out how to make players take damage from rain.