I need help recreating a Silent Death

Started by AlphaTD on

Topic category: Help with modding (Java Edition)

Last seen on 02:01, 24. Feb 2022
Joined Dec 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I need help recreating a Silent Death

I'm trying to make a silent death from skyblock, and it basically teleports you to behind the mob you are looking at, and i can't figure out how to do this!

Last seen on 16:10, 3. Oct 2024
Joined Jan 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I responded to someone else…
Tue, 02/01/2022 - 00:54

I responded to someone else trying to achieve the same thing. This is not exactly what you want, but hopefully it helps. Note that this is from someone who was trying to make you teleport behind mobs in a radius. You will need to use raytrace to detect mob you are looking at, which I can look into tomorrow and hopefully get back to you on. For now, this is what I've got:

----------------------------------------------------------------------------------------------------------------------------------------------------

In a when right clicked on block / in air procedure, drag an "execute command /_____ [x] [y] [z]" block into the procedure.

Set the command to "execute at @e[distance=..10] run tp @s ~ ~3 ~"

This will teleport you three blocks ABOVE the mob, but it is close enough hopefully? Sorry I couldn't be of more help

----------------------------------------------------------------------------------------------------------------------------------------------------